标签:user res sock protoc from soc 127.0.0.1 shark 方法
1.Udp :User Datagram Protocol(Udp)用户数据报文协议。
2.适用于局域网的主机间通信。
3.使用方法
1:创建Socket
OS_Socket local(127.0.0.1",9000);
OS_UdpSocket sock;
sock.Open(local,true);
2:接收
char buf[128];
OS_SockAddr peer;//对方的地址
int n= sock.RecvFrom(buf,128,peer);
3.销毁Socket
sock.Close();
(127.0.0.1表示本机地址,不经过网卡,直接在系统内回环返回,wireshark无法检测到)
标签:user res sock protoc from soc 127.0.0.1 shark 方法
原文地址:https://www.cnblogs.com/zhouqianwei/p/8955007.html