-
这是一个网络信息查询系统,能实现添加,查询(精确查询、模糊查询),浏览全部信息,无密码...
这是一个网络信息查询系统,能实现添加,查询(精确查询、模糊查询),浏览全部信息,无密码-This is a network information inquiry system, able to add, inquiries (query, fuzzy inquiries), View all the information, no password
- 2022-01-20 23:11:13下载
- 积分:1
-
一个简单的http下载例程!编译无误,开发环境VC6.
一个简单的http下载例程!编译无误,开发环境VC6.
-A simple http download routines! Correct compiler, development environment VC6.
- 2022-01-25 17:23:39下载
- 积分:1
-
This is a multi
这是一个多线程收发数据的程序,所有的内容都已经清楚地注释过了-This is a multi-threaded procedure to send and receive data, all the contents of the Notes have been clearly
- 2023-07-27 17:45:03下载
- 积分:1
-
pop邮箱检测系统,提供邮箱检测。属于网络编程系列范围
pop邮箱检测系统,提供邮箱检测。属于网络编程系列范围-pop mail detection system to provide mail detection. Belong to the scope of Network Programming Series
- 2022-05-28 08:34:58下载
- 积分:1
-
BBS
BBS-CS 天乙社区 v6.0.1(含源码) 天乙社区6.0是一套基于JAVA技术的网络虚拟社区,采用了Hibernate+Spring+Struts的轻量级J2EE框架,较5.x的内核有又了很大的提高.-BBS-CS Tian community v6.0.1 (including source code) communities Tian 6.0 is a set of Java-based network of virtual communities using the Hibernate Spring Struts lightweight J2EE framework, 5.x kernels are also greatly improved.
- 2023-09-09 03:45:06下载
- 积分:1
-
非常简单的代码就可以实现下载远程文件到本地了
非常简单的代码就可以实现下载远程文件到本地了
-A very simple code that can be achieved to download a remote file to a local of the
- 2022-05-10 21:58:45下载
- 积分:1
-
急需原代码请通过
急需原代码请通过-urgent requests by the original code
- 2023-02-15 04:40:04下载
- 积分:1
-
获取本地IP并显示 简单控制台程序(已编译通过)
获取本地IP并显示 简单控制台程序(已编译通过)-Access to the local IP and display a simple console program (compiled through)
- 2022-03-20 07:47:57下载
- 积分:1
-
This the server part of the chat application. This part establishes the connecti...
This the server part of the chat application. This part establishes the connection between clients. -This is the server part of the chat application. This part establishes the connection between clients.
- 2022-03-12 12:17:46下载
- 积分: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