登录
首页 » Windows Socket编程 » w3cn1.0_gb2312 网业设计师手册

w3cn1.0_gb2312 网业设计师手册

于 2023-03-23 发布 文件大小:2.07 MB
0 187
下载积分: 2 下载次数: 1

代码说明:

w3cn1.0_gb2312 网业设计师手册-w3cn1.0_gb2312 network industry designers Manual

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

发表评论

0 个回复

  • 一个用hook拦截数据包的VC序。 先获取所有进,然后选择你要操作的进。...
    一个用hook拦截数据包的VC程序。 先获取所有进程,然后选择你要操作的进程。-A hook used to intercept packets of VC procedures. First access to all processes, and then select the operation you want to process.
    2023-01-07 17:40:03下载
    积分:1
  • 网页播放器,好好研究吧
    网页播放器,好好研究吧-website player, a thorough study of it
    2022-07-17 01:37:39下载
    积分:1
  • 实时数据采集,zhe ge zi shu gou duo ma
    实时数据采集,zhe ge zi shu gou duo ma -Real-time data acquisition, zhe ge zi shu gou duo ma
    2022-07-22 17:39:13下载
    积分:1
  • 1-持续CSMA协议下,当一个用户要发送数据时,它首先侦听信道,看是否有其他站点在传送。如果信道忙,就持续等待直到信道空闲时,便将数据送出。若发生冲突,就等待一个随机长的时间,然后重新侦听。 对于这种协议,先考虑当前帧i时的前一帧时i-1,得到前一帧时的最后一帧frame0(相对时间最大的帧)的相对时间dt0,然后再在当前帧时查看有哪些帧的相对时间会小于dt0,这些帧若是发送就会与frame0发生冲突,所以这些帧就进入持续等待状态,这些帧并没有发送。再考虑当前帧余下的帧(dt > dt0),它们中的第一帧侦听到信道处于空闲状态,所以就发送,而其他的帧由于第一帧的发送又处于等待状态。若有大于或等于2个帧的相对时间相等,且它们又同时侦听到信道空闲时,就会同时发送而导致冲突,冲突发生后的处理方法同上两个协议的一样。 -1- CSMA continued under the agreement, when a user to send data, it first interception Channel to see if there are other sites in transmission. If Channel busy, continuing to wait until the idle channel, and put more information out. If there is conflict, it is a long wait for a random time, then re-interception. Such agreements, to consider the current frame i am one of the former when i-1, be a time before the final one frame0 (relative to the time frame) the relative dt0 time, and then when the current frame to detect what the relative time frame will be less than dt0, these frames will be sent if and frame0 conflict, th
    2022-03-03 08:55:18下载
    积分:1
  • java新手的简单聊天小序用UDP写的,对javanet包中最基本的类的基本应用...
    java新手编的简单聊天小程序用UDP写的,对javanet包中最基本的类的基本应用-series of simple procedures for small chat with UDP written in the right javanet basic package of basic applications
    2022-03-15 19:29:33下载
    积分:1
  • k-均值聚类算法
    ommonly 用于初始化方法是 Forgy 和随机分区。[9] 的 Forgy 方法随机选择 k 意见从数据集,并使用这些作为初始的手段。随机划分方法首先为每个观察值随机分配一个群集,然后前进到更新这一步,因此计算初始的意思,要其质心,cluster 的随机分配点。Forgy 方法倾向于传播的最初的手段,而随机分区把所有的这些数据集的中心附近的酒店。根据 [9] Hamerly et al.随机划分方法是一般首选等 k-调和手段和模糊 k-均值算法。期望最大化和标准 k-均值算法,初始化的 Forgy 方法是可取的。
    2022-12-06 01:25:03下载
    积分:1
  • vs Ping LAN messaging and procedures. Rar
    vs Ping LAN消息和程序。雷亚尔
    2023-07-06 01:40:04下载
    积分:1
  • 计算校验和 校验和算法描述:为保证网络上传输的数据的可靠性,在许多协议中都设置了校验和项,例如:IPv4、ICMPv4、IGMPV4、ICMPv6、UDP...
    计算校验和 校验和算法描述:为保证网络上传输的数据的可靠性,在许多协议中都设置了校验和项,例如:IPv4、ICMPv4、IGMPV4、ICMPv6、UDP和TCP 等等。计算这些校验和的算法称为网际校验和算法,简单来说就是:把被校验的数据16位进行累加,然后取反码,若数据字节长度为奇数,则数据尾部补一个字节的0以凑成偶数。 由于从输入文件读入的数据不能直接满足计算校验和的条件,所以首先对从文件读入缓冲区的数据进行预处理,即读入缓冲区时忽略空格。由于累加是按16位进行的,所以每次从缓冲区中读出4个字符,并将字符转换成对应的16进制数字,如此依次累加,直至数据全部读完。 还有一种情况,即如果数据长度为奇数个字节,则需要判断,并补0累加。程序中利用的是缓冲区长度计数器i和当前读取到计数器j判断数据长度是否为奇数。即如果数据长度为偶数,则读完数据时当前读取到计数器j的值应与缓冲区长度i相等,而如果数据长度为奇数,则读完数据时,当前读取到计数器j>缓冲区长度i,此时需将缓冲区中剩余的两个字符读出,并补0,转换成相应16进制数以后参与累加。 当累加结束后,将累加和的16位以上数据位移下再进行一次累加,并对最后累加和取反即得所求校验和。 -calculated checksum checksum algorithm Description : To ensure the network transmission of data reliability, in many of the agreements are set up and calibration, for example : IPv4, ICMPv4, IGMPV4, ICMPv6. UDP and TCP so on. Calculating checksum algorithm called the Internet checksum algorithm, the simple answer is : as has been the calibration data for 16 cumulative, and then take the anti-code, if the data byte length of the odd, data will make up the tai
    2022-01-26 06:39:03下载
    积分:1
  • 一个很简单的文件传输序,采用select模型进行的文件传输,可以连续传输文件...
    一个很简单的文件传输程序,采用select模型进行的文件传输,可以连续传输文件
    2022-02-04 06:53:38下载
    积分:1
  • 网络入门的一个实践好序,正在学VC的朋友可以看一下
    网络编程入门的一个实践好程序,正在学VC的朋友可以看一下-Network Programming entry of a good practice procedures, is studying VC friends can look at the
    2022-05-07 03:00:21下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载