当前位置:  开发笔记 > 程序员 > 正文

什么是在.NET中保持活动套接字检查的最佳方法?

如何解决《什么是在.NET中保持活动套接字检查的最佳方法?》经验,为你挑选了1个好方法。

我正在寻找一种在.NET中进行保持活动检查的方法.该方案适用于UDP和TCP.

目前在TCP中,我所做的是一方连接,当没有数据要发送时,它每隔X秒发送一次保持活动.

我希望对方检查数据,如果在X秒内收到非数据,则提出事件左右.

我尝试做的一种方法是进行阻塞接收并将套接字的RecieveTimeout设置为X秒.但问题是每当Timeout发生时,套接字的Receive会抛出一个SocketExeception并且这边的套接字会关闭,这是正确的行为吗?为什么套接字在超时后关闭/死亡而不是仅仅继续?

检查是否有数据和睡眠是不可接受的(因为我可能在睡觉时接收数据时滞后).

那么最好的方法是什么呢?为什么我在另一方面描述的方法失败了?



1> Greg Dean..:

如果您的字面意思是"KeepAlive",请尝试以下操作.

    public static void SetTcpKeepAlive(Socket socket, uint keepaliveTime, uint keepaliveInterval)
    {
        /* the native structure
        struct tcp_keepalive {
        ULONG onoff;
        ULONG keepalivetime;
        ULONG keepaliveinterval;
        };
        */

        // marshal the equivalent of the native structure into a byte array
        uint dummy = 0;
        byte[] inOptionValues = new byte[Marshal.SizeOf(dummy) * 3];
        BitConverter.GetBytes((uint)(keepaliveTime)).CopyTo(inOptionValues, 0);
        BitConverter.GetBytes((uint)keepaliveTime).CopyTo(inOptionValues, Marshal.SizeOf(dummy));
        BitConverter.GetBytes((uint)keepaliveInterval).CopyTo(inOptionValues, Marshal.SizeOf(dummy) * 2);

        // write SIO_VALS to Socket IOControl
        socket.IOControl(IOControlCode.KeepAliveValues, inOptionValues, null);
    }


我很乐意回复那些试图以这种方式帮助你的人.
我想知道你是否读过这个问题:)当然我不是
推荐阅读
jerry613
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有