根据这里的一些帖子,我编写了以下简单的方法来设置我的 Socket KeepAlive,它似乎有效。在我拔下以太网电缆以中断两个服务之间的连接后,我的网络库可以处理 SocketAsyncEventArgs Completed 事件上传输的 0 字节并触发 Disconnected 事件。
但由于某种原因,我需要使用百分之一秒而不是毫秒。我可以找到的所有文档似乎都表明我应该使用毫秒。
(编辑)我现在已经验证返回的字节与其他两种方法匹配:
http://www.codeproject.com/Articles/117557/Set-Keep-Alive-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;
}