-
go-back-n实现rdt3 -go-back-n rdt3
- 2022-01-31 21:49:13下载
- 积分:1
-
这是个拨号上网源代码 里面加入了自己的一些东西 可能和其他版本相差很多...
这是个拨号上网源代码 里面加入了自己的一些东西 可能和其他版本相差很多-this is a dial-up Internet access to the source code inside its own and some other things could be much different version
- 2022-01-23 11:03:53下载
- 积分:1
-
5.0B版的游戏人间和心灵港湾、绿色心情三种风格。
增加了首页对最新发表主题、最强人气帖、最多回复帖的调用。
丰富了每日贴士的内容,修正了播放器程序,增...
5.0B版的游戏人间和心灵港湾、绿色心情三种风格。
增加了首页对最新发表主题、最强人气帖、最多回复帖的调用。
丰富了每日贴士的内容,修正了播放器程序,增加了在线电台栏目。
去掉了许多不必要的调用,缓解了对空间资源的消耗。
虽然功能增加不少,但速度却比5.0B版更快,也更实用。
默认前台管理员的帐号是失却的记忆,密码都是19790414-5.0B version of the game and the human soul Harbor, green heart of three styles. A Home for the latest theme, the most popular proposal, most reply brief call. The daily tips rich content, amended the players procedures, increased online radio programs. Removed a lot of unnecessary calls, mitigation of space resources consumption. Although the functional increase, but the rate faster than the version 5.0B, but also more practical. Default Account Manager outlook is the loss of memory, the password is 19790414
- 2022-03-23 08:19:00下载
- 积分:1
-
并发服务(三)多路IO模型
多进程,多线程并发模型的缺陷
linux I/O模式:阻塞模式,非阻塞模式,I/O多路复用,信号驱动I/O,异步I/O
select与poll函数
多路I/O并发服务模型
实验提莫
- 2022-02-26 18:58:29下载
- 积分:1
-
the game ping pong in the langage of java
the game ping pong in the langage of java
- 2022-03-17 01:31:12下载
- 积分:1
-
WEBBASE―JAVA
WEBBASE―JAVA-WEBBASE-JAVA
- 2022-10-27 05:50:04下载
- 积分:1
-
tcp/ip 源码 比较精简的
tcp/ip 源码 比较精简的-tcp/ip source more streamlined
- 2022-02-13 20:04:06下载
- 积分:1
-
This is an e
这是一个关于网络硬件的电子书,包括了一些基本网络硬件的配置和说明,比如路由器,网卡,交换机,等等,同样很适合新手-This is an e-book on the network hardware, including some basic configuration of network hardware and instructions, such as routers, network cards, switches, and so on, equally suitable for novices
- 2022-05-19 20:33:45下载
- 积分:1
-
非常实用的c#网络编程,download后可仔细阅读
非常实用的c#网络编程,download后可仔细阅读-非常实用的c#网络编程
- 2022-04-11 07:08:45下载
- 积分: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