-
得到多穴主机所有IP地址
得到多穴主机所有IP地址-be multi-homed host all IP addresses
- 2022-02-07 00:20:04下载
- 积分:1
-
personal job management system "allows you to find work to facilitate the p...
个人求职管理系统》可以让你在找工作的过程中方便地记录你所选中的公司信息、职位信息、发送的简历和公司的回复,支持多用户,是一个多用户系统。具体请看readme文件。 -personal job management system "allows you to find work to facilitate the process of recording your chosen company information, job information, send a resume and the company"s response, support multiple users, is a multi-user system. For details, please read the readme file.
- 2022-05-20 00:59:33下载
- 积分:1
-
关于网络录音机的网络源程序
关于网络录音机的网络源程序-network recorders on the network source
- 2022-03-20 21:06: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
-
datacnie多页面浏览器datacnie 原程序
datacnie多页面浏览器datacnie 原程序-datacnie tabbed browser datacnie original program
- 2023-02-05 13:25:04下载
- 积分:1
-
一些网络工具的源程序
一些网络工具的源程序-Web tools of the source
- 2022-07-12 21:11:17下载
- 积分:1
-
可实现对多聊和私聊,希望多多下载,保证另你满意哈
可实现对多聊和私聊,希望多多下载,保证另你满意哈-right can be realized more and Private Chat chat, download a lot, another guarantee you satisfaction Kazakhstan
- 2022-01-25 19:10:00下载
- 积分:1
-
PingGUI 可以Ping一个自定义IP(段)的主机地址,并返回结果
可以实现Ping一个IP段内的IP地址,并输出Ping结果,界面简单,操作方便,可以作为了解套接字编程的教程
- 2022-04-19 12:41:30下载
- 积分:1
-
QT获取网络时间
基本过程如下:
1. 利用ntp服务器获取网络时间
QUdpSocket udp_sock;
udp_sock.connectToHost("time.windows.com",123);
2. 阻塞等待连接成功
if(udp_sock.waitForConnected(60000))
{
...
}
3. 发送时间请求
udp_sock.write(time_req);
udp_sock.flush();
4. 阻塞等待消息返回
if(udp_sock.waitForReadyRead(120000))
{
...
}
说明:此过程等待时间可能较长,出现连接失败的情况也比较常见。
- 2022-03-21 22:20:09下载
- 积分:1
-
半自动论坛聊天系统喊话程序,先抓包然后填入即可
半自动论坛聊天系统喊话程序,先抓包然后填入即可-Semi-automatic system message chat forum procedures, first to capture and then fill in
- 2022-02-04 01:11:29下载
- 积分:1