-
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
-
VC―网络与通信实例
VC―网络与通信实例-VC-networking and communications examples
- 2022-05-19 15:45:59下载
- 积分:1
-
http://easynews.dl.sourceforge.net/sourceforge/web
http://easynews.dl.sourceforge.net/sourceforge/web-ftp/Web-FTP-2.2.1.tar.gz
- 2022-07-20 02:02:48下载
- 积分:1
-
本程序为一个很好的八数码(又称九宫图)程序,为本人的人工智能课程设计。...
本程序为一个很好的八数码(又称九宫图)程序,为本人的人工智能课程设计。-the procedures for a good eight digital (also known as JiuGongTu) procedure, the artificial intelligence of my course design.
- 2022-04-22 01:27:28下载
- 积分:1
-
winpcap sdk
用于winpcap开发的SDK,里面包含了几个库文件:wpcap.lib Packet.lib,和几个头文件,使用的时候把库文件放在工程目录下或是编译器的目下,然后编译器中加入他们的路径
- 2022-05-29 12:30:40下载
- 积分:1
-
p2p software, the use of peer
p2p软件,利用p2p技术进行文件共享,搜索等-p2p software, the use of peer-to-peer file-sharing technologies, such as search
- 2022-08-10 13:13:23下载
- 积分:1
-
监听分析流量中的http流量,并把抓到的http网址存到c盘下
监听分析流量中的http流量,并把抓到的http网址存到c盘下-Analysis to monitor the http traffic flow, and to capture the http URL to the c disk kept under
- 2022-02-02 05:00:19下载
- 积分:1
-
WinSocket各种阻塞非阻塞模式的简单例子都已通过调试适合网络编程初学者...
WinSocket各种阻塞非阻塞模式的简单例子都已通过调试适合网络编程初学者-WinSocket a variety of blocking non-blocking mode has been adopted by a simple example of network programming for beginners debugging
- 2022-02-15 11:46:53下载
- 积分:1
-
In the ASP. net domain names and ip under the two
在ASP。net下的域名以及ip之间的双向解析-In the ASP. net domain names and ip under the two-way analysis
- 2023-07-23 03:20:02下载
- 积分:1
-
Multi
多文件上传,前面flex界面.后台php处理的,可自己修改成java-Multi-file upload, flex in front of the interface. Php deal with the background and can modify their own into java
- 2022-01-25 22:19:51下载
- 积分:1