-
socket example,包括客户和服务端的应用
socket example,包括客户和服务端的应用-socket example, including customer service and application end
- 2022-01-22 12:16:49下载
- 积分:1
-
This is a study on e
这是一个关于电子商务的网站,初学者可以下来看看哦,-This is a study on e-commerce site, a beginner can look down Oh,
- 2022-03-23 01:06:16下载
- 积分:1
-
实现网页与FLASH互动的FLASH源代码.源代码很小,可以自己根据需要更改样式....
实现网页与FLASH互动的FLASH源代码.源代码很小,可以自己根据需要更改样式.-FLASH page and realize interactive FLASH source code. Source code is very small, may need to change in accordance with their own style.
- 2022-12-15 01:10:03下载
- 积分:1
-
HTTP协议,规定因特网社区的因特网标准路线协议。
HTTP协议,规定因特网社区的因特网标准路线协议。-HTTP_Protocol
- 2022-10-12 17:30:03下载
- 积分:1
-
这是一个古语软硬件信息好程序
这是一个古语软硬件信息好程序-This is a message saying the program is hardware
- 2023-05-25 03:25:03下载
- 积分:1
-
短消息发送接收源码
该源码是邮件短消息协议的发送以及接收源码,适合网络编程计算机网络通信协议的相关功能的开发以及应用,具有很大的参考价值,主要应用于windows平台下的开发参考与应用
- 2022-06-26 15:14:51下载
- 积分:1
-
集中式服务器的聊天应用
应用背景多用户聊天应用程序使用Python命令行文件:client.py server.py可以帮助多个用户同时进行交互的应用程序。运行client.py:Python client.py服务器IP地址端口号关键技术关键技术:Python•套接字编程TCP
- 2022-02-12 07:33:30下载
- 积分:1
-
TCPUDP port monitor to see the process and services.
监听TCP、UDP端口,查看进程及服务.-TCPUDP port monitor to see the process and services.
- 2022-07-01 06:24:08下载
- 积分:1
-
NetBIOS on several remote visualization operation of the code. Zip
几个关于NetBIOS进行远程可视化操作的代码.zip-NetBIOS on several remote visualization operation of the code. Zip
- 2022-12-18 08:05:03下载
- 积分: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