-
里面主要是JAVA开发的一个企业内部通讯软件,的源码
里面主要是JAVA开发的一个企业内部通讯软件,的源码-Which is mainly the development of a JAVA enterprise communications software, source code
- 2022-05-31 17:03:44下载
- 积分:1
-
词典压缩编码 在多媒体中数据量一般都比较大,为了更好的在网络上传输,采用的无损压缩编码...
词典压缩编码 在多媒体中数据量一般都比较大,为了更好的在网络上传输,采用的无损压缩编码-Dictionary Coding in multimedia data is generally larger than that in order to better the transmission on the network, using a lossless compression coding
- 2022-03-12 23:41:32下载
- 积分: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
-
分隙ALOHA:
该协议下,用户在产生帧后总是等到下一帧时开始时才发送,所以,对于结构FrameTime_struct,其m_Frame[i](相对时间)总...
分隙ALOHA:
该协议下,用户在产生帧后总是等到下一帧时开始时才发送,所以,对于结构FrameTime_struct,其m_Frame[i](相对时间)总是为零。发生冲突后同样等待一个随机时间重发。
所以只要满足当前帧时只有一帧发送,就可以发送成功,而不需考虑上一帧时的情况。
-points gap ALOHA : under the agreement, users always have a frame after frame until the next time when this started, so that the structure FrameTime_struct, m_Frame [i] (relative to time) always zero. After the conflict the same time waiting for a random re-issued. Therefore, as long as the current frame to meet only one this, we can successfully sent, and not considering one at the situation.
- 2022-07-19 22:52:36下载
- 积分:1
-
MFC下的文件传输的例子
MFC下的文件传输的例子-the MFC example file transfer
- 2023-01-10 02:10:04下载
- 积分:1
-
这是视频聊天的服务程序!跟前一个配套使用,效果还可以!...
这是视频聊天的服务程序!跟前一个配套使用,效果还可以!-This is the video chat service program! In front of an ancillary use, the effect can!
- 2022-01-20 23:04:55下载
- 积分:1
-
good
好的
- 2022-06-02 05:13:58下载
- 积分:1
-
TCP的客户服务器通信程序 一:程序运行过程 1、运行服务器程序,等待客户端发出请求 2、运行客户端程序,输入客户的IP地址,请求连接 3、若连接成功,服务器端...
TCP的客户服务器通信程序 一:程序运行过程 1、运行服务器程序,等待客户端发出请求 2、运行客户端程序,输入客户的IP地址,请求连接 3、若连接成功,服务器端显示客户的IP地址及端口号;客户端接收文件并保存在d:clientls.txt下,否则,显示错误信息。 二:程序实现原理 发送端:打开文件,逐一读取字符到缓冲区(缓冲区大小为1024),若文件大于1024,则成块发送;若小于,则直接发送。 接受端:与发送端同理。-TCP client-server communication program one : running a process, running the server and wait for the client to issue two requests, the client operating procedures, the importation of customer IP address, link request, if successful connection, the server-client shows the IP address and port number ; the client receives the document and preserve d : client ls.txt, otherwise an error message. 2 : Principle procedures transmitter : open the file, read each character to the buffer (buffer size for 1024), and if the document is greater than 1,024, then sent into pieces; If less, then sent directly. Receivers : Send-the same reason.
- 2022-06-30 17:04:28下载
- 积分:1
-
VC写的一个通讯程序,使用winsock,非
一个VC写的通信程序,用winsock,非CSocket 实现的聊天室程序.-VC to write a communications program, using winsock, non-CSocket realize chat room procedures.
- 2023-02-17 19:10:03下载
- 积分:1
-
网络摄像机在视频帧传输主程序中很有价值
网络摄像机中的视频帧传输主程序
很有参考价值-Network camera in the video frame transmission main program valuable
- 2022-08-20 07:07:58下载
- 积分:1