-
基本套接字基本上是聊天,“使用中的教学实践。
“基本套接字实现基本聊天功能”,教学示例使用。-"basic socket basically chat," teaching practices in use.
- 2023-07-22 01:05:04下载
- 积分:1
-
MIME(BASE64/QP) 编码/解码程序代码。 此代码是一个 BCB 的单元,非常简单,提供了四个函数, 要改成 Delphi 或其它 C/C++ 也很容...
MIME(BASE64/QP) 编码/解码程序代码。 此代码是一个 BCB 的单元,非常简单,提供了四个函数, 要改成 Delphi 或其它 C/C++ 也很容易,有需要的自已改吧。此代码经过测试,结果正确。-MIME (BASE64/QP) encoding/decoding code. This code is a BCB module is very simple, providing four functions, to change Delphi or other C/C is also very easy, it is necessary to change it by themselves. This code tested and the results correctly.
- 2022-11-24 16:30:08下载
- 积分:1
-
解决局域网的网上邻居文件共享,文件浏览,
解决局域网的网上邻居文件共享,文件浏览,-Solve the LAN Network Neighborhood file sharing, file browsing
- 2022-12-10 23:35:03下载
- 积分:1
-
聊天 P2P java netbean
聊天 P2P 局域网中。编写 java netbean单一的聊天,群聊......文件传输。(**)每个节点将创建固定的端口以侦听来自其他对等方的请求。将通知每个对等方的 IP 和端口参数执行的功能添加朋友的功能,发送聊天请求......当完成发送或接收聊天请求,同行将开放 2套接字发送和接收消息。请求聊天,等待在一段时间从其他对等方发送 ACK (2s),如果所以这次我仍然还没有收到 ACK,结论是该对等端在点对点脱机
- 2023-02-03 23:40:03下载
- 积分:1
-
IOCP 连接
连接
此示例演示使用和执行情况连接
点 (支持和要求的接口)
在多线程环境中。
服务器实现中的连接。允许此 DLL 的 DLL。
CoRandom COM 对象,由 CRandom c + + 实现的创建
类。COM 对象支持 IRandom (双接口) 和
支持,和它接受连接
IRandomEven
- 2022-12-19 05:15:03下载
- 积分:1
-
torque服务器源代码
torque服务器源代码-torque server source code
- 2022-12-27 17:10:03下载
- 积分:1
-
shared folder on a procedure for the
关于文件夹共享的一个程序-shared folder on a procedure for the
- 2022-11-08 20:25:02下载
- 积分: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
-
linewatcher拨打您的ISP,保持你的联系和日志
LineWatcher dials your ISP, keeps your connection alive and logs errors. Originally distributed as freeware, this program counts over 10.000 downloads since its first release in 2001. See home page http://www.reseau.org/linewatcher/index.html-LineWatcher dials your ISP, keeps your connection alive and logs
errors. Originally distributed as freeware, this program counts over
10.000 downloads since its first release in 2001. See home page
http://www.reseau.org/linewatcher/index.html
- 2022-08-24 08:17:55下载
- 积分: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