-
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
-
本程序提供的是bbs的数据结构和存储过程源代码,用asp写的
本程序提供的是bbs的数据结构和存储过程源代码,用asp写的-this program is provided by the bulletin board structure and the data storage process source code used to write the asp
- 2022-07-28 13:55:59下载
- 积分:1
-
gb2312 big5 interchangeable and procedures
gb2312和big5互相转换的程序-gb2312 big5 interchangeable and procedures
- 2023-03-21 08:50:03下载
- 积分:1
-
这个代码是利用中间件RMI开发的flight航班查询,对新手的网络编程有很大的帮助,很实用的...
这个代码是利用中间件RMI开发的flight航班查询,对新手的网络编程有很大的帮助,很实用的-Soil stamp Hitomi measured using tungsten Did中glass RMI Xi Jie-kai Yao flight cavity询,查beer terrace ground themis cavity PCT She met with the most bleed at the nose cavity submerged exhaust stack exhaust , wife of mother
- 2023-01-23 09:10:04下载
- 积分:1
-
netspeedspyer
Windows的网络流量速度检测。使用MFC作为开发平台。(A net speed spyer using MFC platform .)
- 2012-02-21 15:20:48下载
- 积分:1
-
Socket客户端、服务器端入门
Socket客户端、服务器端入门例子。
包括服务器端代码
包括客户端代码
简单容易学习。
- 2023-04-27 11:35:03下载
- 积分:1
-
jsp写的电子地图部分控件,编写好的java类和页面,简单,实用
jsp写的电子地图部分控件,编写好的java类和页面,简单,实用-jsp written part of the electronic map control, the preparation of a good java classes and pages, simple, practical
- 2022-01-25 15:01:42下载
- 积分:1
-
多路I/O复用select
多个客户端连接服务器,采用socket编程,其中用select选项设置套接字可以达到多路I/O复用的目的,代码亲自验证编译并运行
- 2022-05-15 01:38:34下载
- 积分:1
-
PackSock
一个通过网络高速传输文件的控件:
具有以下特点
1.有高速数据传输功能,超过了Winsock控件的吞吐量
2.入校验功能,满足大数据包的收发,理论上不限数据尺寸
3.加入防错代码,提高了接口鲁棒性(through a network of high-speed transmission of documents, the controls : one with the following features. A high-speed data transmission functions Controls over the throughput of Winsock 2.- Check function and meet large data packet transceiver, Theoretically Open-data size 3. to prevent the wrong code, improve the robustness Interface)
- 2006-08-14 21:58:05下载
- 积分:1
-
Net_Chat_Client
一个网络socket 聊天程序的客户端.可用于局域网和(A network socket client chat program)
- 2009-06-28 07:49:25下载
- 积分:1