2

根据这里的一些帖子,我编写了以下简单的方法来设置我的 Socket KeepAlive,它似乎有效。在我拔下以太网电缆以中断两个服务之间的连接后,我的网络库可以处理 SocketAsyncEventArgs Completed 事件上传输的 0 字节并触发 Disconnected 事件。

但由于某种原因,我需要使用百分之一秒而不是毫秒。我可以找到的所有文档似乎都表明我应该使用毫秒。

(编辑)我现在已经验证返回的字节与其他两种方法匹配:

http://www.codeproject.com/Articles/117557/Set-Keep-Alive-Values

http://social.msdn.microsoft.com/Forums/en-US/35dfb50e-1e14-40c1-af01-f359be4d6a02/how-to-set-socket-keep-alive-timeinterval-values

(编辑)我也对此进行了 WireSharked,并且可以验证当间隔设置为 500 时 KeepAlives 每 5 秒熄灭一次。

是什么赋予了???最新版本的 .NET 是否出现问题?

private static byte[] GetKeepAliveOption(bool isEnabled, int keepAliveTime, int keepAliveInterval)
{
    //time and interval are in hundredths of a second to work properly
    //12 keepalive bytes, 1st 4 for enabled, next 4 for time, next 4 for interval
    byte[] bytes = new byte[12];

    if (isEnabled)
    {
        bytes[0] = 1;
    }

    byte[] keepAliveTimeBytes = BitConverter.GetBytes(KeepAliveTime);
    Buffer.BlockCopy(keepAliveTimeBytes, 0, bytes, 4, 4);

    byte[] keepAliveIntervalBytes = BitConverter.GetBytes(KeepAliveInterval);
    Buffer.BlockCopy(keepAliveIntervalBytes, 0, bytes, 8, 4);

    return bytes;
}
4

1 回答 1

2

在评论中回答了我自己的问题。抱歉,这是我的第一篇文章,我应该在这样的答案中这样做。

其要点是了解参数:

  • KeepAliveTime 是发送 KeepAlive 消息之间的时间间隔。

  • KeepAliveInterval 是初始 KeepAlive 消息未被确认时发送重新传输探测之间的间隔。

于 2014-02-18T14:46:01.760 回答