-
< 精通Windows Sockets网络开发
< 精通Windows Sockets网络开发--基于Visual C++实现>> 一书的全部源代码,包括 多线程下载程序、网络五子棋、在线考试系统等五个项目。每个项目都使用不同的socket模型开发(比如select,基于消息、事件的异步模型,重叠i/o,完成端口),对于初学socket网络编程的朋友有极大帮助、、 -" " Proficient in Windows Sockets network development- based on Visual C++ implementation " " a book full source code, including multi-threaded download, network Gobang, online examination system of five projects. Each item using a different socket model development (such as select, based on news, events, asynchronous model, overlapping i/o, complete the port), socket network programming for the beginner a friend of great help,,,
- 2023-05-10 23:20:02下载
- 积分:1
-
HttpWatch网络抓包工具源码
HttpWatch强大的网页数据分析工具.集成在Internet Explorer工具栏.包括网页摘要.Cookies管理 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-01-27 23:11:18下载
- 积分:1
-
telephone dial
电话拨号程序,直接根据isp提出的rfc3261协议-telephone dial-up procedures, isp directly under the agreement rfc3261
- 2022-10-03 05:45:03下载
- 积分:1
-
用原始套接字实现网络监听
用原始套接字实现网络监听 -socket with the original network monitoring
- 2022-08-09 06:00:09下载
- 积分:1
-
实现简单的聊天程序
在VC++6.0下实现的简单的网络聊天程序。根据目的主机的IP地址或者主机名,可以将短消息发送至目的主机,接收消息显示框显示已发送和接收到的消息。
- 2023-01-01 16:05:03下载
- 积分:1
-
Asp. Net 2.0 WebPart application. Web use modular components to create Web Appli...
asp.net 2.0 WebPart应用.
使用Web部件创建模块化的Web门户应用;
个人化特性和自定义特性;
将自定义用户控件作为Web部件使用;
创建一个个人化特性的提供程序;
现今门户应用非常流行,好的门户都有共同而显著的特点。那就是都会给访问者提供雅观的信息,并且这些信息都是通过模块化的、一致的、易于浏览的用户界面提供的。一些综合性的门户网站走得更远,它们甚至允许网站成员提供内容、上传文档以及个人化门户页面。 -Asp. Net 2.0 WebPart application. Web use modular components to create Web Application gateway; personal identity and self-definition of identity; Since the definition of user controls as Web Parts; create a personal characteristic for the procedures; Application gateway now very popular, a good gateway to have a common and significant features. That is the will to provide surfers with regards to the information, and such information through modular, consistent, easy access to the user interface to provide. Integrated portal gone farther, even allowing for their members, Upload documentation, and personalized portal pages.
- 2023-05-15 16:15:05下载
- 积分:1
-
flatmenuform
FlatMenuForm
- 2023-07-31 23:45:03下载
- 积分:1
-
java socket网络编程代码(含服务端和客户端)
本代码是java socket网络编程源码,包含服务端和客户端,实现客户端发送消息,服务端接收并反馈消息。首先,需要准备好java环境,我使用的是jdk1.8。socket文件夹为eclipse项目原文件,可以直接导入eclipse编译运行。如果不想看项目文件,可以直接查看代码:server.java为服务端代码。client.java为客户端代码。先运行server,显示:“Waiting for client.”表示启动成功。再运行client,显示:“server reply:I have accepted.”,表示发送并受到服务端的反馈消息。这时再看服务端,显示:“recv: hello, i am wang.”,表示收到客户端发来的消息。
- 2022-04-17 06:30:36下载
- 积分: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
-
Browse through your website must click on the ads, if he did not click on the ad...
浏览你的网站的人必须点击广告,如果他不点击广告将无法继续浏览-Browse through your website must click on the ads, if he did not click on the ads will not be able to continue browsing
- 2022-02-05 08:55:03下载
- 积分:1