登录
首页 » Windows Socket编程 » UDP收包程序例子,基于非阻塞模式socket,并利用select()实现接收超时。...

UDP收包程序例子,基于非阻塞模式socket,并利用select()实现接收超时。...

于 2022-07-11 发布 文件大小:6.91 kB
0 102
下载积分: 2 下载次数: 1

代码说明:

UDP收包程序例子,基于非阻塞模式socket,并利用select()实现接收超时。-UDP packet admission procedure examples, based on the non-blocking mode of socket, and use select () to receive overtime realize.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 该源码可以用来下载文件,它使用Http接口实现的,功能不错。
    该源码可以用来下载文件,它使用Http接口实现的,功能不错。-It can be used to download files. It is implemented by HTTP interfaces.
    2023-03-18 04:30:04下载
    积分:1
  • passthru的扩展源码
    passthru的扩展源码-passthru expansion FOSS
    2023-05-19 14:10:02下载
    积分:1
  • 局域网内的点对点文件传输,运行前请先关闭防火墙.服务端和客户端要都启动...
    局域网内的点对点文件传输,运行前请先关闭防火墙.服务端和客户端要都启动-LAN peer-to-peer file transfer, run before the closure of the firewall. Server-side and client to have to start
    2023-07-15 06:50:03下载
    积分:1
  • 序运行时获取计算机的网卡的mac地址,以便于作为某种标识
    程序运行时获取计算机的网卡的mac地址,以便于作为某种标识-running computer access at the LAN mac address, in order to serve as a logo
    2022-02-14 02:15:39下载
    积分:1
  • 目录UDP点对点聊天是一个UDP的点对点聊天序,序运行测试的时候,需要改变侦听端口,如果要在同一台机器上测试,需要改变一下序设置...
    目录UDP点对点聊天是一个UDP的点对点聊天程序,程序运行测试的时候,需要改变侦听端口,如果要在同一台机器上测试,需要改变一下程序设置-directory is a peer-to-peer chatting UDP peer-to-peer chat program, running tests, the interception of ports need to change, if the same test machine, the need to change the program
    2022-05-18 16:35:48下载
    积分:1
  • WNetAddConnection2 become
    WNetAddConnection2变成-WNetAddConnection2 become
    2022-03-10 02:20:05下载
    积分:1
  • VC下基于winsock2的原始套接子发送序,含有详细的注释说明,是学习网络的很好的例子...
    VC下基于winsock2的原始套接子发送程序,含有详细的注释说明,是学习网络编程的很好的例子-VC-based Winsock2 sockets son sent the original procedure, which contains detailed notes, learning network programming is a good example
    2022-03-04 12:55:26下载
    积分:1
  • 计算校验和 校验和算法描述:为保证网络上传输的数据的可靠性,在许多协议中都设置了校验和项,例如:IPv4、ICMPv4、IGMPV4、ICMPv6、UDP...
    计算校验和 校验和算法描述:为保证网络上传输的数据的可靠性,在许多协议中都设置了校验和项,例如:IPv4、ICMPv4、IGMPV4、ICMPv6、UDP和TCP 等等。计算这些校验和的算法称为网际校验和算法,简单来说就是:把被校验的数据16位进行累加,然后取反码,若数据字节长度为奇数,则数据尾部补一个字节的0以凑成偶数。 由于从输入文件读入的数据不能直接满足计算校验和的条件,所以首先对从文件读入缓冲区的数据进行预处理,即读入缓冲区时忽略空格。由于累加是按16位进行的,所以每次从缓冲区中读出4个字符,并将字符转换成对应的16进制数字,如此依次累加,直至数据全部读完。 还有一种情况,即如果数据长度为奇数个字节,则需要判断,并补0累加。程序中利用的是缓冲区长度计数器i和当前读取到计数器j判断数据长度是否为奇数。即如果数据长度为偶数,则读完数据时当前读取到计数器j的值应与缓冲区长度i相等,而如果数据长度为奇数,则读完数据时,当前读取到计数器j>缓冲区长度i,此时需将缓冲区中剩余的两个字符读出,并补0,转换成相应16进制数以后参与累加。 当累加结束后,将累加和的16位以上数据位移下再进行一次累加,并对最后累加和取反即得所求校验和。 -calculated checksum checksum algorithm Description : To ensure the network transmission of data reliability, in many of the agreements are set up and calibration, for example : IPv4, ICMPv4, IGMPV4, ICMPv6. UDP and TCP so on. Calculating checksum algorithm called the Internet checksum algorithm, the simple answer is : as has been the calibration data for 16 cumulative, and then take the anti-code, if the data byte length of the odd, data will make up the tai
    2022-01-26 06:39:03下载
    积分:1
  • 我做的客户端,服务器端通讯的例子,供大家参考。
    我做的客户端,服务器端通讯编程的例子,供大家参考。-client, server communications programming examples for reference.
    2023-05-10 17:25:03下载
    积分:1
  • 网络的相关知识,网络序的写,Socket是连接应用序与网络驱动序的桥梁,Socket在应用序中创建,通过bind与驱动序建立关系。此后,应用序送给...
    网络的相关知识,网络程序的编写,Socket是连接应用程序与网络驱动程序的桥梁,Socket在应用程序中创建,通过bind与驱动程序建立关系。此后,应用程序送给Socket的数据,由Socket交给驱动程序向网络上发送出去。计算机从网络上收到与该Socket绑定的IP+Port相关的数据后,由驱动程序交给Socket,应用程序便可从该Socket中提取接收到的数据。网络应用程序就是这样通过socket进行数据的发送与接收的。TCP与UDP的工作原理与编写过程,如何在程序中链接库文件。一个字符界面的聊天程序。-network of the knowledge, network program, Socket is a link between the application and network drivers for the bridge, Socket in the application process to create, Driving through bind with the procedures established relations. Since then, Socket applications presented data from the socket to the network driver to send out. Computer network received from the socket and bundled IP Port-related data, from driver to Socket, applications from the Socket can extract the data receiver. Web applications is through this socket for data transmission and reception. TCP and UDP Principle and the work of the preparation process, and how to process link libraries. A character based chat program.
    2023-01-29 23:25:03下载
    积分:1
  • 696518资源总数
  • 104384会员总数
  • 26今日下载