登录
首页 » Windows Socket编程 » 三个不同的聊天室程序,有客户端和服务器端。大家可以下载学习...

三个不同的聊天室程序,有客户端和服务器端。大家可以下载学习...

于 2022-06-26 发布 文件大小:510.54 kB
0 168
下载积分: 2 下载次数: 1

代码说明:

三个不同的聊天室程序,有客户端和服务器端。大家可以下载学习-Three different chat room procedures, client and server side. You can download the study

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

发表评论

0 个回复

  • vb 写的防火墙,可以与自己加载一些另外的安全功能
    vb 写的防火墙,可以与自己加载一些另外的安全功能-vb wrote firewalls, can be loaded with its own number of additional security features
    2023-01-20 04:45:03下载
    积分:1
  • 提供了一台主机ping 另一台主机的源代码,原理清晰明了
    提供了一台主机ping 另一台主机的源代码,原理清晰明了-Provided a host ping another host source code, the principle of clarity
    2022-05-15 09:00:58下载
    积分:1
  • 序禁用和启用网卡, 序禁用和启用网卡
    程序禁用和启用网卡, 程序禁用和启用网卡-Procedures to disable and enable the network card, disable and enable the network card
    2023-05-29 12:10:03下载
    积分:1
  • socket通信,包括SERV和CLIENT通信机制,可以用来建立基于socket通信的网络应用序开发。...
    socket通信,包括SERV和CLIENT通信机制,可以用来建立基于socket通信的网络应用程序开发。-socket communications, including the SERV and the CLIENT communication mechanism can be used to establish a socket-based communications network application development.
    2022-03-18 21:04:15下载
    积分:1
  • VC的提高的客户端
    VC编的提高的客户端程序-VC series of the enhanced client
    2022-03-17 22:33:11下载
    积分:1
  • 实现TCP穿越NAT(即TCP打洞)。目的是为了实现局域网节点和另一个局域网节点的通信...
    实现TCP穿越NAT(即TCP打洞)。目的是为了实现局域网节点和另一个局域网节点的通信-TCP to achieve through the NAT (ie TCP holes). In order to achieve the purpose of communications between node of local area network and another local network node.
    2022-03-21 02:33:07下载
    积分: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
  • 一个自动拨号的工具,是在codeproject网站下载的,能方便实现有线和无线的modem的快速拨号。...
    一个自动拨号的工具,是在codeproject网站下载的,能方便实现有线和无线的modem的快速拨号。-an automatic dial-up tool, in codeproject website. can facilitate the achievement of wired and wireless modem speed dial.
    2022-10-26 10:25:03下载
    积分:1
  • 使用JAVA I/O和 NI/O写的两种网络ECHO服务器,用以学习两种IO的不同方法,体验基于阻塞与非阻塞IO开发高性能网络应用序的具体实例.Java...
    使用JAVA I/O和 NI/O编写的两种网络ECHO服务器,用以学习两种IO的不同编程方法,体验基于阻塞与非阻塞IO开发高性能网络应用程序的具体实例.Java平台传统的I/0系统基于byte(字节)和Stream(数据流)。这种模式下的I/O 操作以字节为单位,以流的方式处理数据。而NIO( New I/O )以块的方式处理数据,它的系统操作面向Buffer(缓冲),Channel(通道)和Selector(选择器),不再是字节,这种模式利用了操作系统管理内存和文件的方式,并将一些耗时操作直接转移给操作系统,使JavaI/O的速度得以提高、性能得到了明显的改善 -The use of JAVA I/O and NI/O, prepared by two types of network servers ECHO to learn two different programming methods IO experience obstructive and non-blocking IO based on the development of high-performance network applications specific examples. Java platform for the traditional I/0 system is based on the byte (byte) and Stream (data streams). This mode of I/O operation in bytes in order to deal with data flow way. The NIO (New I/O) blocks the way to deal with data, its system for Buffer (buffer), Channel (channel) and the Selector (selector), is no longer a byte, this mode of use of operating system management of memory and the manner in which documents, and some time-consuming operation of a direc
    2022-02-09 15:18:54下载
    积分:1
  • 一个简单的能实现PING功能的小序,可以控制PING的数据包的个数。...
    一个简单的能实现PING功能的小程序,可以控制PING的数据包的个数。-a simple achieve PING function of small programs will be able to control the PING number of data packets.
    2022-10-09 15:50:02下载
    积分:1
  • 696518资源总数
  • 106155会员总数
  • 8今日下载