-
Windows Network Programming second edition. CHM
Windows 网络编程第二版.CHM -Windows Network Programming second edition. CHM
- 2023-01-30 19:55:03下载
- 积分:1
-
/* This IPv4 example listens for incoming packets and automatically adds destina...
/*
This IPv4 example listens for incoming packets and automatically adds destinations
for new sources.
这个例子主要是让大家了解下面3个函数的用法。
void OnNewSource(RTPSourceData *dat)
void OnBYEPacket(RTPSourceData *dat)
void OnRemoveSource(RTPSourceData *dat)
具体内容看我的测试文档吧。
例子的中文解释都由hanyuejun添加,有任何疑问请发hanyuejun2006@163.com
*/-/* This IPv4 example listens for incoming packets and automatically adds destinations for new sources. This example is designed to allow everyone to understand the following three functions usage. void OnNewSource (RTPSourceData* dat) void OnBYEPacket (RTPSourceData* dat) void OnRemoveSource (RTPSourceData* dat) the specific content of the test document I watch it. Explained by the example of the Chinese hanyuejun add, have any questions please send hanyuejun2006@163.com* /
- 2022-03-26 07:31:21下载
- 积分:1
-
一个简单的http下载例程!编译无误,开发环境VC6.
一个简单的http下载例程!编译无误,开发环境VC6.
-A simple http download routines! Correct compiler, development environment VC6.
- 2022-01-25 17:23:39下载
- 积分: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
-
代理服务器的源程序,只是一个示范,可以了解Proxy原理
代理服务器的源程序,只是一个示范,可以了解Proxy原理 -proxy server source, is a demonstration of principle can understand Proxy
- 2022-01-30 11:50:56下载
- 积分:1
-
winsocket编程的相关资料,都是文档和规范,经验等
winsocket编程的相关资料,都是文档和规范,经验等-winsocket
- 2023-05-09 00:15:02下载
- 积分:1
-
小程序的网页文件检索
实现Web文件检索的小程序-Web document retrieval of small programs
- 2022-01-29 00:22:01下载
- 积分:1
-
基于Indy的网络聊天
基于Indy的网络聊天-based on the Internet chat Indy
- 2022-05-10 11:09:06下载
- 积分:1
-
一个非常好的旅游网站程序.
一个非常好的旅游网站程序.-a very good tourist site procedures.
- 2022-08-19 22:11:45下载
- 积分:1
-
LDAP
基于LDAP的单点登录程序设计与实现(源代码+论文,附有详细的源代码说明)
- 2022-05-04 21:51:17下载
- 积分:1