- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 nghttp2_asio 连接到 Apple Push Notifications 开发者服务。我正在尝试关注 APN guide as written :
Keep your connections with APNs open across multiple notifications; do not repeatedly open and close connections. APNs treats rapid connection and disconnection as a denial-of-service attack. You should leave a connection open unless you know it will be idle for an extended period of time
所以我试图以连接不会超时的方式编写它。但是,我的连接确实在大约一分钟后超时。我看到为非 nghttp2_asio 发送 PING 帧,但不是为 asio 版本发送,正如 Apple 所说:
You can check the health of your connection using an HTTP/2 PING frame.
如何保持与 APN 的连接?
代码
#include <nghttp2/asio_http2_client.h>
#include <boost/asio/io_service.hpp>
#include <boost/asio/ssl/context.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp>
#include <boost/uuid/uuid_io.hpp>
#include <iostream>
#define LOG_EASY( STREAM ) std::cout << __PRETTY_FUNCTION__ << ": " << STREAM << std::endl;
int main( int argc, char *argv[] )
{
boost::asio::io_service io_service;
boost::asio::ssl::context ssl_context( boost::asio::ssl::context::sslv23 );
std::string hostname( "https://api.development.push.apple.com:443" );
// The context options
ssl_context.set_options( boost::asio::ssl::context::default_workarounds |
boost::asio::ssl::context::no_sslv2 |
boost::asio::ssl::context::single_dh_use );
// Now put it up
ssl_context.use_private_key_file( "/home/mike/dev/cpp/sw/run/certs/apn.key", boost::asio::ssl::context::pem );
ssl_context.use_certificate_file( "/home/mike/dev/cpp/sw/run/certs/apn.crt", boost::asio::ssl::context::pem );
boost::system::error_code ec;
nghttp2::asio_http2::client::configure_tls_context( ec, ssl_context );
boost::asio::detail::throw_error( ec ); // Throw as necessary
// Make the new session
nghttp2::asio_http2::client::session session( io_service,
ssl_context,
"api.development.push.apple.com",
"443" );
// On connect callberk
session.on_connect( [ &session, &hostname ]( boost::asio::ip::tcp::resolver::iterator endpoint ) {
LOG_EASY( "Connected!" );
// Error cheek
boost::system::error_code e;
// Generate a crazy filename
boost::uuids::uuid uuid = boost::uuids::random_generator()();
// Header merp
nghttp2::asio_http2::header_map headers;
headers.emplace( "apns-id", (nghttp2::asio_http2::header_value){ boost::uuids::to_string( uuid ), false } );
headers.emplace( "apns-expiration", (nghttp2::asio_http2::header_value){ "0", false } );
headers.emplace( "apns-priority", (nghttp2::asio_http2::header_value){ "10", false } );
headers.emplace( "apns-topic", (nghttp2::asio_http2::header_value){ "com.company.App-Topic", false } );
// Send a test push
const nghttp2::asio_http2::client::request *request = session.submit( e,
"POST",
hostname+"/3/device/129a46cbac12d8c523aaf8a1758d07f0fc8b291c776aed4a7dc6f1535be1521e",
"{ \"aps\" : { \"alert\" : \"Hello\" } }",
headers );
boost::asio::detail::throw_error( e ); // Throw as necessary
// Now hook
request->on_response( []( const nghttp2::asio_http2::client::response &response ){
LOG_EASY( "response received! Status code: " << response.status_code() );
response.on_data( []( const uint8_t *data, std::size_t len ) {
LOG_EASY( "Response length: " << len );
LOG_EASY( std::string( (const char *)data, len ) );
} );
} );
// On push
request->on_push( []( const nghttp2::asio_http2::client::request &push ){
LOG_EASY( "push request received!" );
push.on_response( []( const nghttp2::asio_http2::client::response &res ){
LOG_EASY( "push response received!" );
res.on_data( []( const uint8_t *data, std::size_t len ) {
LOG_EASY( std::string( (const char *)data, len ) );
});
});
} );
// On close
request->on_close( []( uint32_t error_code ){
LOG_EASY( "Request close: " << error_code );
} );
} );
// On error kerlbook
session.on_error( []( const boost::system::error_code &error ) {
LOG_EASY( error.message() );
} );
// Run the servace
io_service.run();
}
输出
main(int, char**)::<lambda(boost::asio::ip::basic_resolver<boost::asio::ip::tcp>::iterator)>: Connected!
main(int, char**)::<lambda(boost::asio::ip::basic_resolver<boost::asio::ip::tcp>::iterator)>::<lambda(const nghttp2::asio_http2::client::response&)>: response received! Status code: 200
main(int, char**)::<lambda(boost::asio::ip::basic_resolver<boost::asio::ip::tcp>::iterator)>::<lambda(const nghttp2::asio_http2::client::response&)>::<lambda(const uint8_t*, std::size_t)>: Response length: 0
main(int, char**)::<lambda(boost::asio::ip::basic_resolver<boost::asio::ip::tcp>::iterator)>::<lambda(const nghttp2::asio_http2::client::response&)>::<lambda(const uint8_t*, std::size_t)>:
main(int, char**)::<lambda(boost::asio::ip::basic_resolver<boost::asio::ip::tcp>::iterator)>::<lambda(uint32_t)>: Request close: 0
main(int, char**)::<lambda(const boost::system::error_code&)>: Connection timed out
最佳答案
感谢 nghttp2 的开发人员,现在无需修改上述代码即可使用此功能。
关于c++ - nghttp2 asio 连接到 Apple 推送通知超时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42837218/
使用 asio 库,我想为 asio::serial_port 读/写调用使用超时。 是否可以使用相同的 asio::serial_port asio::io_context 和用于 asio 的相同
对于我正在从事的副业项目应该使用哪种类型的解析器,我有点困惑。我在 asio 文档中找不到答案。 我知道 DNS 可以与 UDP 或 TCP 一起使用,并且通常通过 TCP 发送较大的响应。 asio
在仅从一个线程调用 io_service::run() 的情况下,从不同线程调用 async_write 和 async_read 是否安全?谢谢! 最佳答案 Is it safe to call a
我想知道Boost ASIO 有多受欢迎。它是否被用于任何流行的网络密集型软件中? 最佳答案 用于管理 IBM Blue Gene/Q 的系统软件 super 计算机广泛使用Boost.Asio。
我想使用一个函数来读取套接字端口,并在收到 IP 数据包时交还控制权。 boost::asio::ip::udp::socket 有一个函数接收(或 async_receive),它返回读取了多少字节
我试图调整 Boost 文档中的 SSL 服务器示例 here但我想制作一个应用程序,您可以在其中使用普通 boost::asio::ip::tcp::socket或 SSL 套接字,但我还没有找到将
在查看 boost asio co_spawn 文档 ( https://www.boost.org/doc/libs/1_78_0/doc/html/boost_asio/reference/co_
我正在尝试使用 Boost.ASIO 库,但我找不到如何列出 boost 的可用端口(带有串行端口服务)或套接字(带有网络服务)。 你知道这是否可能吗? 谢谢你。 最佳答案 Boost.Asio 不提
我想使用boost::asio从多个stdout中同时读取stderr和boost::process。但是,我在使用boost::asio时遇到了编译问题,可以重建以下无法编译的最小示例: #incl
提前为一个愚蠢的问题道歉 - 我对这一切都很陌生。 所以我从 here 下载了 asio ,并尝试#include asio.hpp,但出现以下错误; fatal error: boost/confi
我是使用 boost 的项目的一部分作为一个 C++ 库。现在我们要使用 SMTP/POP3/SSL/HTTP/HTTPS。我在 Poco::Net 中检测到几个拟合类和函数 Poco::Net::P
有谁知道有任何实现 Web Sockets 的尝试吗?使用 Boost asio 的 API? 最佳答案 我意识到这是一个旧线程,但想更新以帮助那些寻找答案的人:WebSocket++完全符合要求。
和 asio::thread_pool 有什么区别和一个 asio::io_context谁的run()函数是从多个线程调用的?我可以更换我的 boost::thread_group调用 io_con
我想连接到由目标 IP 地址和端口号指定的服务器套接字。 boost::asio::connect 似乎不允许使用它。我有 ip 目的地作为无符号 int 值。 更新:我能够做到 ba::ip::tc
我在 pc 上有 3 个网络接口(interface),并且想确保当我进行 udp 套接字发送时,它通过特定的网络接口(interface)发送(我有发送数据时使用的 ip 地址)。 这是代码。 ud
我正在使用 ASIO 开发网络应用程序并提到了Chat-Server/Client 我问过类似的问题Here 为了更好地解释,我在这里添加了更多代码: 我的 Cserver Class class C
我已经阅读了 boost asio 引用资料,浏览了教程并查看了一些示例。尽管如此,我还是看不出应该如何拆除套接字: 我应该调用 close() 还是由套接字的析构函数完成? 什么时候应该调用 shu
我认为标题已经说明了大部分内容,但我也有兴趣了解在没有现有解决方案的情况下如何将 DTLS 支持引入 asio 最佳答案 ASIO 本身不支持DTLS 但有一个GitHub 库asio_dtls已向
我正在将 async_read 与 streambuf 一起使用。但是,我想将读取的数据量限制为 4,这样我就可以在进入正文之前正确处理 header 。 我如何使用 async_read 做到这一点
从this example开始,我想用 async_read_until() 替换 async_read()。 所以我查了一下this example ,并查看了如何调用 async_read_unt
我是一名优秀的程序员,十分优秀!