-
socket编程实现tcp通信
实现tcp通信,服务器端等待客户端连接,连接成功后client端发送固定的字符串给客户端,完成通信后,关闭建立的套接字。程序很简单是socket编程的入门级源码,需要的可以下载。
- 2022-03-10 12:34:39下载
- 积分:1
-
一个关于sniffe嗅探的程序,基于tcp/ip层的,学习用的
一个关于sniffe嗅探的程序,基于tcp/ip层的,学习用的-This is a program for research about sniffer, which is based on TCP/IP.
- 2022-05-08 20:07:21下载
- 积分:1
-
This is a study on e
这是一个关于电子商务的网站,初学者可以下来看看哦,-This is a study on e-commerce site, a beginner can look down Oh,
- 2022-03-23 01:06:16下载
- 积分:1
-
a small network chat server and client, can be used for e
一个小型的网络聊天服务器和客户端,可用于网络学习-a small network chat server and client, can be used for e-learning
- 2022-10-06 12:50:02下载
- 积分:1
-
一款性能良好的视频会议系统;可以实现视频,语音,文本信息的交流。需要外部设备:摄像头,耳机+麦克。经测试,图像清晰,语音质量可靠,图像音频传输失真很小,速度可靠...
一款性能良好的视频会议系统;可以实现视频,语音,文本信息的交流。需要外部设备:摄像头,耳机+麦克。经测试,图像清晰,语音质量可靠,图像音频传输失真很小,速度可靠。是多媒体网络传输开发者良好的参考。-A good performance of the video conferencing systems allows video, voice, text exchange of information. The need for external equipment: camera, headset+ Mike. Been tested, image clarity, voice quality, reliability, image, audio transmission distortion is very small, the speed and reliable. Is a multimedia network transmission developers a good reference.
- 2022-04-13 04:07:56下载
- 积分:1
-
这是关于UDP穿透NAT的P2P源代码,运行环境是VC++6.0
这是关于UDP穿透NAT的P2P源代码,运行环境是VC++6.0-on UDP penetrate NAT P2P source code, the environment of VC 6.0
- 2022-05-05 10:26:48下载
- 积分:1
-
从html中分析提取链接
从html中分析提取链接-from extracting html link analysis
- 2023-06-10 12:45:02下载
- 积分:1
-
用vc实现的sniffer程序
用vc实现的sniffer程序-with vc achieve sniffers procedures
- 2022-07-18 20:56:43下载
- 积分:1
-
classical cloning function for adding those items hidden units is very convenien...
asp中经典的克隆函数,对于添加那些隐藏的项目单位是非常的方便的。
-classical cloning function for adding those items hidden units is very convenient.
- 2022-07-03 02:09:34下载
- 积分: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