登录
首页 » Windows Socket编程 » P2P共享软件下载CF银河v1.9.9源码

P2P共享软件下载CF银河v1.9.9源码

于 2022-02-03 发布 文件大小:1.84 kB
0 251
下载积分: 2 下载次数: 1

代码说明:

P2P下载分享软件Ares Galaxy V1.9.9 源码-P2P sharing software download cf Galaxy V1.9.9 FOSS

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • p-持续CSMA协议下,一个用户在发送之前,先侦听信道,若是空闲,就以概率p发送出去,而以q =1-p的概率推迟到下一帧时。如果下一帧时仍是空闲,便再次以概率p发送而以q推迟到再下一帧时。直到发送成功或另外一用户开始发送时为止。若一开始就侦听到信道忙,它就等到下一帧时,然后再开始上述过程。若发生冲突,这等待一随机时间后重新开始。本实验中取q值为0.5。求的是0.5-持续CSMA。 -p-persistent CSMA agreement, a user before sending the first interception channel, if idle, with probability p sent, and to q = 1-p probability postponed to the next frames. If the next frame was still idle, they again sent with probability p and q to further postponed to the next frames. Until this a success or other users at the beginning of this date. If an interception at the start of the busy channel, it will wait till the next frames, and then begin the process. If conflict breaks out, waiting for a random period of time after the re-start. The experiments take q value of 0.5. For the 0.5-sustained CSMA.
    2022-02-07 21:49:23下载
    积分:1
  • 完整的连接察看序,可以察看有哪些序打开了哪些端口,数据收发流量等等信息,推荐下载...
    完整的连接察看程序,可以察看有哪些程序打开了哪些端口,数据收发流量等等信息,推荐下载-integrity of the link to see procedures, which can inspect the procedures which opened the port, data transceiver information flow, etc., to download
    2022-02-11 22:52:09下载
    积分:1
  • functions : management background text ads, user
    功能说明:后台管理文本广告,自定义查找用户,系统管理,公告管理,友情连接管理添加,审核用户,管理用户! 管理员用户名密码:admin-functions : management background text ads, user-defined search, system management, Notice management, connection management friendship add, audit users, manage user! Admin users Password : admin
    2022-02-06 00:00:18下载
    积分:1
  • on the Internet under the ISCSI source code perhaps useful for all
    在网上下的iscsi源代码也许对大家有用-on the Internet under the ISCSI source code perhaps useful for all
    2022-08-11 16:01:42下载
    积分:1
  • 网络的相关知识,网络序的写,Socket是连接应用序与网络驱动序的桥梁,Socket在应用序中创建,通过bind与驱动序建立关系。此后,应用序送给...
    网络的相关知识,网络程序的编写,Socket是连接应用程序与网络驱动程序的桥梁,Socket在应用程序中创建,通过bind与驱动程序建立关系。此后,应用程序送给Socket的数据,由Socket交给驱动程序向网络上发送出去。计算机从网络上收到与该Socket绑定的IP+Port相关的数据后,由驱动程序交给Socket,应用程序便可从该Socket中提取接收到的数据。网络应用程序就是这样通过socket进行数据的发送与接收的。TCP与UDP的工作原理与编写过程,如何在程序中链接库文件。一个字符界面的聊天程序。-network of the knowledge, network program, Socket is a link between the application and network drivers for the bridge, Socket in the application process to create, Driving through bind with the procedures established relations. Since then, Socket applications presented data from the socket to the network driver to send out. Computer network received from the socket and bundled IP Port-related data, from driver to Socket, applications from the Socket can extract the data receiver. Web applications is through this socket for data transmission and reception. TCP and UDP Principle and the work of the preparation process, and how to process link libraries. A character based chat program.
    2023-01-29 23:25:03下载
    积分:1
  • chatroom application coded by VC.both server side and client side.
    用vc实现的网络编程!聊天程序的客户端服务端都有!并且可灵活应用!可谓是一个实用程序!-chatroom application coded by VC.both server side and client side.
    2022-04-08 18:21:09下载
    积分:1
  • 在Windows 2000下使用winsock2修改IP报头的例子
    在Windows 2000下使用winsock2修改IP报头的例子- 2,000 uses winsock2 in Windows to revise the IP masthead the example
    2022-08-12 17:24:24下载
    积分:1
  • (利用GIF_LZW算法实现的)网络图片传输 技术特点 ~~~~~~~~ 一、使用TCP协议传输数据。理由:稳定性好。 二、使用字节数据流进行传输,理由: A:
    (利用GIF_LZW算法实现的)网络图片传输 技术特点 ~~~~~~~~ 一、使用TCP协议传输数据。理由:稳定性好。 二、使用字节数据流进行传输,理由: A:VB的String存在自动Unicode转换问题,影响速度; B:可以直接发送8位字节数据,不需要使用Base64编码,从而减少了编码时间。 三、使用GIF-LZW压缩算法压缩图像。理由: A:行程编码、Huffman压缩算法压缩率太低; B:JPEG压缩算法需要太多位运算,且运算量大(有专门MMX优化算法),不利于VB实现; C:GIF-LZW压缩算法压缩率较好,且我已想出VB语法下高效GIF-LZW压缩/解压算法。 四、使用“有序抖动”算法进行 色彩量化。理由:“有序抖动”处理的结果具有一定规律性,有助于LZW类算法压缩。-(using GIF_LZW algorithm) picture transmission network ~~~~~~~~ a technical features, the use of TCP to transmit data. Reason : good stability. Two, the use of byte data stream for transmission, reasons : A : VB String exist automatically Unicode conversion, the impact speed; B : can directly send eight bytes of data and do not need to use Base64 encoding, thereby reducing the coding time. 3, the use of GIF- LZW compression algorithm for image compression. Reason : A : itinerary coding, Huffman compression algorithm compression rate is too low; B : JPEG compression algorithm needs much-bit computing, and large amount of computation (with MMX spe
    2022-05-19 18:52:33下载
    积分:1
  • 飞鸽传书(java版)
    这是一份java实现的飞鸽传书,压缩包里的为txt文件,里面有注释和对应的包,在开发环境下根据package建立相应的包后即可运行,是一份不错的学习代码。
    2022-04-18 09:03:12下载
    积分:1
  • a neighbor can access online code, through access to the mainframe are able to a...
    一个可以获取网上邻居的代码,通过获取的主机名可以得到相应的IP地址,并且可以从本地向所获取的机器发送数据。-a neighbor can access online code, through access to the mainframe are able to access the corresponding IP addresses, as well as from local access to the machine by sending data.
    2023-07-15 01:15:03下载
    积分:1
  • 696516资源总数
  • 106641会员总数
  • 4今日下载