-
以太网交换机私有协议,能实现快速环网功能,类似于RAPP协议
以太网交换机私有协议,能实现快速环网功能,类似于RAPP协议-the network provite protocol for Ring,the same the RAPP protocol....
- 2022-10-03 06:30:03下载
- 积分:1
-
Very intuitive and understandable tcp communication procedures, particularly tho...
非常直观易懂的tcp通信程序,特别适合与初学者与进阶者,让你了解四种端口类型,非常好入门案例!-Very intuitive and understandable tcp communication procedures, particularly those suited to beginners and advanced, so that you understand the four kinds of port types, a very good entry-case!
- 2022-05-05 22:19:06下载
- 积分:1
-
这里给出了网络编程中一些端口及其应用,很有用的
这里给出了网络编程中一些端口及其应用,很有用的-Here are some of the port of network programming and its application, very useful
- 2023-07-19 19:15:04下载
- 积分:1
-
一个基于windows api 的源程序...有很强的参考价值
一个基于windows api 的源程序...有很强的参考价值-a windows-based api of the source ... a strong reference value
- 2022-01-26 07:03:01下载
- 积分:1
-
an FTP download the source code. Code quality is very high
一个FTP下载的源代码。代码质量非常高-an FTP download the source code. Code quality is very high
- 2022-03-23 17:03:17下载
- 积分:1
-
look for all the network packets procedures
察看本机所有的网络包的程序-look for all the network packets procedures
- 2022-02-11 18:18:31下载
- 积分:1
-
计算机网络-自定向下方法与Internet特色
非扫描高清
计算机网络-自定向下方法与Internet特色
非扫描高清-Computer network- under way since the directional characteristics of non-scan high-definition Internet
- 2022-04-20 04:30:19下载
- 积分:1
-
1, I have written agreement to follow SGIP1.1 message client program. For testin...
1、自己编写的遵循SGIP1.1协议的短信客户端程序。仅供测试、学习。
2、该程序只实现了SGIP1.1协议的一部分。-1, I have written agreement to follow SGIP1.1 message client program. For testing, learning. 2, the program only to realize the SGIP1.1 part of the agreement.
- 2022-04-28 07:18:42下载
- 积分:1
-
This procedure is a learning network programming and interface design, the best...
本程序是学习网络编程和界面设计的最好例子 看一下吧-This procedure is a learning network programming and interface design, the best example of a look at it
- 2023-05-03 18:55: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