-
用UDP实现的一个点对点聊天程序。 用异步方式实现
用UDP实现的一个点对点聊天程序。 用异步方式实现-using UDP achieve a peer-to-peer chat program. Asynchronous means
- 2022-08-07 05:36:40下载
- 积分:1
-
我认为学习网络编程,这本书非常好,特别是初学者!
我认为学习网络编程,这本书非常好,特别是初学者!-i think it is a very usefull book for people who the first time to learn net programes.
- 2022-11-22 21:15:05下载
- 积分:1
-
socket 网络通信 控制台程序 测试通过
socket 网络通信 控制台程序 测试通过
#include
#include
#pragma comment(lib, "ws2_32.lib")
void main()
{
WORD wVersionRequested;
WSADATA wsaData;//WSAata用来存储系统传回的关于WinSocket的资料。
int err;
wVersionRequested = MAKEWORD( 1, 1 );
err = WSAStartup( wVersionRequested, &wsaData );
if ( err != 0 ) {
return;
}
if ( LOBYTE( wsaData.wVersion ) != 1 ||HIBYTE( wsaData.wVersion ) != 1 )
{
WSACleanup( );
return;
}
SOCKET sockClient=socket(AF_INET,SOCK_STREAM,0);// AF_INET ..tcp连接
//初始化连接与端口
- 2023-07-26 07:35:05下载
- 积分:1
-
vs2005下用c#写的八数码游戏,目标状态是固定的
vs2005下用c#写的八数码游戏,目标状态是固定的-vs2005 using c# to write the eight digital games, the goal state is fixed
- 2023-04-22 09:50:03下载
- 积分:1
-
tcp test procedure can be simulated server and client, and can use text and two
tcp测试程序,可以模拟服务器和客户端,并且可以用文本和2进制来看结果-tcp test procedure can be simulated server and client, and can use text and two-band view of the results
- 2022-03-15 15:00:47下载
- 积分:1
-
高级语言程序设计JAVE
高级语言程序设计JAVE-Advanced Language Program Design acids
- 2022-12-19 10:40:03下载
- 积分:1
-
mgcp协议源代码。支持多种编码:g711,g723,g729
mgcp协议源代码。支持多种编码:g711,g723,g729-Controller agreement source code. Support for multiple code : g711, g723, g729
- 2022-02-05 13:28:54下载
- 积分:1
-
本人写的用于自动升级的东东,有兴趣的朋友可以下来看看。...
本人写的用于自动升级的东东,有兴趣的朋友可以下来看看。-I write for the automatic upgrade of the Eastern. . .
- 2022-12-14 18:35:03下载
- 积分:1
-
一个采用RSA的网络聊天程序
一个采用RSA的网络聊天程序-a network chat program
- 2022-03-30 14:47:32下载
- 积分:1
-
我自己收集的一堆关于网络方面的介绍和实用教程,绝对是有利于提高自身技术的!...
我自己收集的一堆关于网络方面的介绍和实用教程,绝对是有利于提高自身技术的!-I collected a pile on the network and the introduction of practical course, it is absolutely conducive to improving their own techniques!
- 2022-03-21 02:35:30下载
- 积分:1