-
MD5 algorithm VB
MD5算法的VB实现-MD5 algorithm VB
- 2022-07-09 12:35:10下载
- 积分:1
-
TCP通信编程
TCP套接字通信编程,一个客户端,一个服务端,客户端向服务端发送请求(发送任意字符,并请求当前时间信息),服务器响应请求(响应字符已预设)。
- 2022-03-17 02:25:56下载
- 积分:1
-
在 c + + 中的 TCP 服务器
该软件是服务器端,用于通信软件,用C++编写的socket。它可以用作其他项目的模板,并同时支持多个客户端连接。注释为西班牙语,但由于不复杂,因此易于翻译;
- 2022-05-14 15:27:14下载
- 积分:1
-
描述如何开发CGI邮件的程序原代码,主要通过一个实例讲解C++的使用...
描述如何开发CGI邮件的程序原代码,主要通过一个实例讲解C++的使用-this is the CGI code
- 2023-04-13 16:15:04下载
- 积分:1
-
基于TCP/IP协议的文件上传服务器端和客户端,其中服务器端有sqlsever2000数据库表,用ado连接,使用时要参照代码稍微修改一下IP地址,建一个数据库...
基于TCP/IP协议的文件上传服务器端和客户端,其中服务器端有sqlsever2000数据库表,用ado连接,使用时要参照代码稍微修改一下IP地址,建一个数据库和表-Based on TCP/IP protocol for file upload server-side and client-side, where there are sqlsever2000 server database table, using ado connection, when used to refer to the code slightly changed a bit IP addresses, building a database and table
- 2022-07-25 23:19:32下载
- 积分:1
-
一个简单的发邮件服务软件的制作!
一个简单的发邮件服务软件的制作!-a simple mail service software production!
- 2022-03-05 15:46:01下载
- 积分:1
-
dns inquiry procedures, listed under the name ip addr
dns查询程序,根据name列出ip addr-dns inquiry procedures, listed under the name ip addr
- 2022-01-25 19:24:13下载
- 积分:1
-
列出FTP站点的文件及目录程序
列出FTP站点的文件及目录程序-FTP site listed on the documents and procedures Contents
- 2022-08-07 06:03:49下载
- 积分:1
-
它库函数进行了简单的包装
它对bekerly标准socket的库函数进行了简单的包装,使标准函数的调用更加直观。 - It storehouse function has carried on the simple packing to
bekerly the standard socket, causes the normal function the transfer
to be more direct-viewing.
- 2023-01-23 15:00:04下载
- 积分: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