-
一个C语言的聊天室源代码
一个C语言的聊天室源代码-A C language source code of the chat room
- 2023-04-02 21:10:03下载
- 积分:1
-
一种管理用户的代码,主要用于用户管理,这也是一种常见的管理方式...
一种管理用户的代码,主要用于用户管理,这也是一种常见的管理方式-A management user
- 2022-02-07 08:16:07下载
- 积分:1
-
打天下php+mysql招聘求职源代码
打天下php+mysql招聘求职源代码-conquer the world php mysql job recruitment source code
- 2022-05-30 21:25:24下载
- 积分:1
-
微软的DNS源码实例
微软的DNS源码实例-Microsoft"s source code examples DNS
- 2022-06-12 11:54:42下载
- 积分:1
-
ccna 网络的教程 中文教程 ccna 的初级教程
ccna 网络的教程 中文教程 ccna 的初级教程-CCNA Network Chinese Tutorial Tutorial Tutorial CCNA junior
- 2022-07-16 03:55:55下载
- 积分:1
-
能够实时获得系统TCP
能够实时获得系统TCP-UDP信息,系统稳定可靠。信息包括:协议、本地IP、本地端口、远程IP、远程端口等信息。-system to real-time access to TCP- UDP information, the system is stable and reliable. Information includes : protocol, local IP, local port, remote IP, remote port information.
- 2022-12-31 06:10:03下载
- 积分:1
-
组播发送测试网络程序,服务器端
组播发送测试网络程序,服务器端-multicast network testing procedures, the server-
- 2022-02-04 03:52:25下载
- 积分:1
-
client server socket VC++6.0
简单的客户端服务器socket通信的小程序,实现了简单的数据传输。
操作时可以先打开服务器,然后同时运行若干个客户端程序。
仅供初学者学习参考使用!
- 2022-01-25 17:58:26下载
- 积分: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
-
该程序实现了串口之间的相互通信,是异步串口通信,计算机网络实验经典程序。...
该程序实现了串口之间的相互通信,是异步串口通信,计算机网络实验经典程序。-Implementation of the procedures between the serial communications, serial communication is asynchronous, the classic experimental procedures for computer networks.
- 2022-05-20 15:31:47下载
- 积分:1