-
Socket(UDP,TCP)加密文件通讯
资源描述
c#编写的基于Socket的异步通信系统封装DLL
- 2023-05-21 12:10:04下载
- 积分:1
-
TCP client, simple connectivity
TCP客户端,简单连接
- 2023-05-09 06:00:02下载
- 积分:1
-
automatically updated IE
自动刷新IE-automatically updated IE
- 2022-06-02 03:40:02下载
- 积分:1
-
**SgipSmg:
1、自己编写的遵循SGIP1.1的短信网关模拟程序。仅供测试、学习。
2、该程序只实现了SGIP1.1协议的一部分。...
**SgipSmg:
1、自己编写的遵循SGIP1.1的短信网关模拟程序。仅供测试、学习。
2、该程序只实现了SGIP1.1协议的一部分。
**声明:
1、用于商业目的之前必须与本人联系,并取得本人同意方可使用。
2、除了上述条款外,没有任何其他限制。
联系方式:leegoldlake@21cn.com-** SgipSmg: 1, I have written to follow the message gateway SGIP1.1 simulation program. For testing, learning. 2, the program only to realize the SGIP1.1 part of the agreement.** Statement: one, used for commercial purposes must be consistent with my prior contact and obtain consent before they can use. 2, apart from the above-mentioned provisions, there is no other restrictions. Contact us: leegoldlake@21cn.com
- 2022-02-15 17:15:40下载
- 积分:1
-
md5 source code
md5 source code
- 2022-07-28 02:01:45下载
- 积分:1
-
Windows 2000 Pro+ IIS5.0+ Internet Explorer5.0
Windows 2000 Server+ Int...
基于Web的网上购物系统后台齐全,含有毕业论文和用户手册-Windows 2000 Pro+ IIS5.0+ Internet Explorer5.0
Windows 2000 Server+ Internet Explorer5.0 (推荐)
- 2022-11-04 04:20:03下载
- 积分:1
-
功能介绍:
1、全站生成html(可选)
可减轻服务器负载,提高访问速度,更容易被搜索引擎收录,是大中型站点的必然选择。
2、多管理员...
功能介绍:
1、全站生成html(可选)
可减轻服务器负载,提高访问速度,更容易被搜索引擎收录,是大中型站点的必然选择。
2、多管理员
-functional presentations : one, the station generated html (optional) to reduce server load, increase the speed, more likely to be included search engine, the large and medium-sized site is a natural choice. Two more administrators
- 2023-04-23 03:50:04下载
- 积分:1
-
IntraWeb.Develop.Sample
IntraWeb.Develop.Sample
- 2023-01-27 07:55:03下载
- 积分: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
-
网络聊天程序代码
网络聊天程序例程源代码,包含服务器端代码例程和客户端代码例程,采用WINDOWS SOCKET多线程编程
- 2022-07-12 21:16:24下载
- 积分:1