博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 的tcp Socket设置自定义超时时间
阅读量:5078 次
发布时间:2019-06-12

本文共 1477 字,大约阅读时间需要 4 分钟。

 

 

 

tcp Socket的超时时间默认20多秒,而实际连上不需1秒时间,20多秒是无法接受的。

 

IPEndPoint ipep = new IPEndPoint(ip, port);//IP和端口Socket sock = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);                ConnectSocketDelegate connect = ConnectSocket;                IAsyncResult asyncResult = connect.BeginInvoke(ipep, sock, null, null);                bool connectSuccess = asyncResult.AsyncWaitHandle.WaitOne(TimeOut, false);                if (!connectSuccess)                {                    MessageBox.Show(string.Format("失败!错误信息:{0}", "连接超时"));                    return false;                }                string exmessage = connect.EndInvoke(asyncResult);                if (!string.IsNullOrEmpty(exmessage))                {                    MessageBox.Show(string.Format("失败!错误信息:{0}", exmessage));                    return false;                }                sock.Send(data);//发送信息                reslen = sock.Receive(response, SocketFlags.None);//接收应答数据包

 

private delegate string ConnectSocketDelegate(IPEndPoint ipep, Socket sock);        private string ConnectSocket(IPEndPoint ipep, Socket sock)        {            string exmessage = "";            try            {                sock.Connect(ipep);            }            catch (System.Exception ex)            {                exmessage = ex.Message;            }            finally            {            }            return exmessage;        }

 

转载于:https://www.cnblogs.com/jhlong/p/5622336.html

你可能感兴趣的文章
关于ExecuteNonQuery执行的返回值(SQL语句、存储过程)
查看>>
UVa540 Team Queue(队列queue)
查看>>
mysql数据增删改查
查看>>
shell中下载最新版本或指定版本的办法(Dockerfile 中通用)
查看>>
极客时间-左耳听风-程序员攻略-分布式架构工程设计
查看>>
akka之种子节点
查看>>
不知道做什么时
查看>>
matlab 给某一列乘上一个系数
查看>>
密码学笔记——培根密码
查看>>
Screening technology proved cost effective deal
查看>>
MAC 上升级python为最新版本
查看>>
创业老板不能犯的十种错误
查看>>
Animations介绍及实例
查看>>
判断请求是否为ajax请求
查看>>
【POJ2699】The Maximum Number of Strong Kings(网络流)
查看>>
spring boot配置跨域
查看>>
BZOJ 1996 合唱队(DP)
查看>>
进击吧!阶乘——大数乘法
查看>>
安卓学习资料推荐-25
查看>>
Mysql数据库备份和还原常用的命令
查看>>