其他分享
首页 > 其他分享> > c-无法使用no_delay进行boost :: asio吗?

c-无法使用no_delay进行boost :: asio吗?

作者:互联网

我知道的…

我需要根据https://stackoverflow.com/a/25871250在connect()之前调用set_option(tcp :: no_delay(true)),否则它将无效.

此外,set_option()仅在根据https://stackoverflow.com/a/12845502事先打开套接字的情况下才起作用.

但是,async_connect()的文档指出,如果通过的套接字在处理连接设置之前是打开的,则它将被关闭(请参见async_connect()).

这意味着我选择的方法无法正确设置NO_DELAY(我已经在Windows 7 x64上进行了测试,因此可以肯定地说).

if ( socket.is_open() ) {
    socket.close();
}
socket.open(tcp::v4());
socket.set_option(tcp::no_delay(true));
socket.async_connect(endpoint, bind(&MySession::connectComplete, this, asio::placeholders::error));

问题:如何通过Boost ASIO正确设置NO_DELAY以打开客户端连接?

附注:我使用的是Boost 1.53.对我来说,切换到另一个Boost版本并不容易.

P.P.S .:未在我的程序中设置NO_DELAY,而是在注册表中为网络接口解决了此问题,但这将影响所有应用程序,这不是我的意图.参见description.

解决方法:

async_connect() free函数将关闭套接字:

If the socket is already open, it will be closed.

但是,socket.async_connect()成员函数不会关闭套接字:

The socket is automatically opened if it is not already open. If the connect fails, and the socket was automatically opened, the socket is not returned to the closed state.

以下代码将在打开的套接字上设置no_delay选项,然后为该打开的套接字启动异步连接操作:

socket.open(tcp::v4());
socket.set_option(tcp::no_delay(true));
socket.async_connect(endpoint, handler);

标签:c,boost,boost-asio
来源: https://codeday.me/bug/20191011/1892192.html