-
http代理服务器
http代理服务器-http proxy server
- 2023-08-04 11:55:02下载
- 积分:1
-
这是主要完成文件上传功能,对要写ftp程序者是一个好的参考源码...
这是主要完成文件上传功能,对要写ftp程序者是一个好的参考源码-This is the major file upload function, the right to write ftp procedures is a good reference source
- 2022-06-02 12:44:45下载
- 积分:1
-
运行服务器端后,客户端可通过ip进行连接,使用udp,支持客户端上传,监控屏幕,以及在服务器运行程序等功能,功能比较强大。...
运行服务器端后,客户端可通过ip进行连接,使用udp,支持客户端上传,监控屏幕,以及在服务器运行程序等功能,功能比较强大。-running server, the client can connect through ip, udp used to support client to upload, monitor screens, and the server operating procedures, functions more powerful.
- 2022-07-15 15:57:02下载
- 积分:1
-
简易扣扣聊天
java写的简易扣扣聊天,可多人聊天。
- 2022-06-15 08:02:25下载
- 积分:1
-
一个跨平台的所见即所得在线编辑器,可以在不同的浏览器下使用。...
一个跨平台的所见即所得在线编辑器,可以在不同的浏览器下使用。-a cross-platform WYSIWYG Editors, in different browsers use.
- 2022-12-11 05:55:02下载
- 积分:1
-
网络通讯的源代码,是linux下libnet的win32移植,有一定参考作用。 由于本人没有仔细浏览贵站,不知道是否已有人上传...
网络通讯的源代码,是linux下libnet的win32移植,有一定参考作用。 由于本人没有仔细浏览贵站,不知道是否已有人上传-network communications source code is under linux libnet the win32 transfer, there are certain references. Because I did not carefully View Guizhan not know whether it has been uploaded
- 2022-08-17 07:29:56下载
- 积分:1
-
Network programming, book entry for the network from entry editor, master, famil...
网络编程,入门书籍,供网络编者从入门、掌握、熟悉的一本好书籍。-Network programming, book entry for the network from entry editor, master, familiar with a good book.
- 2022-02-13 13:47:44下载
- 积分:1
-
apache 非阻塞通信框架,非常好,但有些地方比较难,至今没研究明白。...
apache 非阻塞通信框架,非常好,但有些地方比较难,至今没研究明白。-apache framework for non-blocking communication, very good, but more difficult in some places, so far no research to understand.
- 2022-01-24 16:48:30下载
- 积分: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
-
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