-
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
-
BPidentify_trymodel
BP神经网络控制系统辨识的m文件原程序,经过离线训练可以仿真出采样点的变化曲线(BP neural network control system identification procedures m the original document, after off-line simulation training can change the sampling point curve)
- 2007-07-26 06:16:18下载
- 积分:1
-
talk_WSAAsyncSelect_code
用了Windows下的WSAAsyncselect模型编写的服务端.(With the model under Windows WSAAsyncselect written server.)
- 2011-09-29 17:21:12下载
- 积分:1
-
电路(邱关源第四版)+讲义+习题详解
电路(邱关源第四版)+讲义+习题详解,本站目前唯一改版本的电路资料(Circuit (Qiu Guanyuan fourth edition)+ Lectures exercises explain, this site only to versions of the circuit information)
- 2008-08-01 18:03:18下载
- 积分:1
-
udp
udp is a protpocol used for ethernet
- 2017-07-24 21:22:12下载
- 积分:1
-
一个面向GPS开发出来的卫星定位源代码
一个面向GPS开发出来的卫星定位源代码-a development-oriented GPS satellite positioning of the source code
- 2022-07-24 04:25:39下载
- 积分:1
-
NCread
说明: 数据来源于ECMWF网站 且下载格式为nc格式 读取nc风场数据(The data comes from ECMWF website and is downloaded in NC format to read NC wind farm data)
- 2019-11-17 21:09:53下载
- 积分:1
-
一个完整的抓包及分析程序,对于掌握sniffer技术以及数据包结构的程序开发都非常有好处,文件好不好,请大家评论.这是有关书籍光盘里的源码:)...
一个完整的抓包及分析程序,对于掌握sniffer技术以及数据包结构的程序开发都非常有好处,文件好不好,请大家评论.这是有关书籍光盘里的源码:)-A complete capture and analysis procedures for the master packet sniffer technology and structure are very good developers, good documentation, please comment. This is the book CD-ROM source code :)
- 2023-07-26 11:55:04下载
- 积分:1
-
aodv matlab
简单模拟出路径的算法,通过选择节点将路径打印出来(simple route algorithm)
- 2021-04-14 11:28:55下载
- 积分:1
-
Chat_demo
服务器,客户端聊天小程序,可能功能有点简单,但是原理都在(The server, the client chat applet)
- 2013-09-03 11:12:31下载
- 积分:1