搜索资源列表
窗口协议
- 由一台 PC (线程)向另一台 PC (线程)发送数据包,界面应显示出双方帧个数变化,帧序号,发送和接受速度,暂停或重传提示等,界面中必须动态显示数据帧的发送情况和接受情况,包括 在相应窗口详细 显示相应的 ACK 和 其他收发数据帧后发出的消息 ,以表明模拟协议的正确运作过程。 • 接收方及发送方应具有按序收发帧的能力; • 接受方应有固定大小的滑动窗口,并对收到信息缓存。当发送方速度过快或帧丢失(超时),接受方应发送消息,要求暂停或重传(停 -- 等协议);
Ethernet
- 模拟Ethernet帧的发送过程 父进程创建两个子进程和一个共享内存 这个共享内存模拟介质总线 这个两个进程分别从这个内存发送信并进行冲突检测
csma030390
- 模拟Ethernet帧发送过程,使读者熟悉Ethernet帧的数据发送流程
Ethernet
- 模拟Ethernet帧的发送过程 编写程序模拟Ethernet结点的数据发送流程。 具体要求: 1)用两个线程a和b来模拟Ethernet上的两台主机。 2)用一个双字类型变量Bus来模拟总线(将其初始化为“\\0”,并且总线等于“\\0”时表示总线空闲)。 3)两个子线程向总线发送自己的数据。数据用该线程的线程号进行模拟,发送数据用线程号和Bus的“或”操作进行模拟(即Bus=Bus|ID,ID为该线程的线程号)。 4)每台主机须向总线上成功发送10次数据,如果其中某次
Ethernet
- 模拟Ethernet帧的发送过程,有2个子线程,发送成功不少于10次
SISDF
- 模拟以太网帧的发送过程,要求模拟实现CSMA/CD的传送过程
eadf
- 模拟ethernet帧的发送过程,用两个线程a和b来模拟Ethernet上的两台主机,用一个双字类型变量Bus来模拟总线
Ethernet
- 模拟Ethernet帧的发送过程
帧的封装 发送 解析模拟过程
- 里面主要是模拟帧的封装 发送和解析
Etherner
- 本课程设计的目的是模拟Ethernet帧的发送过程,使读者熟悉Ethernet帧的数据发送流程,即CSMA/CD32运作流程: 1)、用两个线程a和b来模拟Ethernet上的两台主机。 2)、用一个双字类型变量Bus来模拟总线(将其初始化为” \0”,并且总线等于”\0”时 表示总线空闲)。 3)、两个子线程向总线发送自己的数据。数据用该线程的线程号进行模拟,发送数据用线 程号和Bus的“或”操作进行模拟(即Bus=Bus|ID,ID为该线程的线程号)。 4)、
Ethernet-frame-send
- 模拟Ethernet帧的发送过程,C++源程序编写。-Simulation of Ethernet frames sent process, C++ source code to prepare.
Ethernet
- 模拟Ethernet帧的发送过程 编写程序模拟Ethernet结点的数据发送流程。 1) 用两个线程a和b来模拟Ethernet上的两台主机。 2) 用一个双字类型变量Bus来模拟总线(将其初始化为“\0”,并且总线等于“\0”时表示总线空闲)。 3) 两个子线程向总线发送自己的数据。数据用该线程的线程号进行模拟,发送数据用线程号和Bus的“或”操作进行模拟(即Bus=Bus|ID,ID为该线程的线程号)。 4) 每台主机须向总线上成功发送10次数据,如果其中某次数据发送失败
Ethernet
- 模拟Ethernet帧的发送过程,熟悉Ethernet帧的数据发送流程,即CSMA/CD32运作流程。-Simulate the process of sending an Ethernet frame, familiar Ethernet frame data transmission process, namely CSMA/CD32 operational flow.
ARQ
- 实现双机文本通信,并通过随机制造错误的方法,模拟数据链路层GoBackN方法下,数据帧的传递过程,并用表格图形界面展示。 1、实验过程中,需并行运行receiver和sender两个包中的主程序。 2、为了使显示文字符合逻辑,请首先使receiver进入等待连接状态,之后sender发 起连接,并发出文本,receiver进行接收。 3、默认情况为单机实验,发送和接收IP均为本地IP;进行双机实验时,请自行修改IP。 4、关闭图形界面后,也请在Eclipse中关闭进程。-A
Framer
- 本程序使用VC6.0开发的WINDOWS界面程序,主要功能是模拟以太网帧的封装过程,将用户输入的文本内容保存为文件,并加以封装,封装后生成数据帧文件,之后用随机数模拟CDMA/CD协议,将帧发送出去-This procedure uses the WINDOWS interface VC6.0 development program, the main function is to simulate the Ethernet frame encapsulation process, the us
ethernetSent
- 计算机网络课程设计源码,实现了模拟Ethernet帧的发送 过程,可更加深入的了解计算机网络ip协议及网络编程。-Computer network curriculum design source, the simulation of Ethernet frames sent Process, a more in-depth understanding of computer network ip protocol and network programming.
Ethernet
- 计算机网络课程设计 模拟Ethernet帧的发送过程 通过自己的实践能够运行通过 很好用-Curriculum design of computer networks to simulate the process of Ethernet frames sent to be able to run through their own practice through good
SEEttherneti
- 模拟Ethernet帧的发送过程,,有2个子线程,发送成功不少于10次 -The sending process of the simulated Ethernet frames, there are two sub-threads, send successfully at least 10 times
SISDF
- 模拟以太网帧的发送过程,要求模拟实现CSMA/CD的传送过程-Simulation of Ethernet frames sent process simulation to achieve the requirements CSMA/CD transmission process
Ethernet
- 目前,Ethernet是应用最广泛的局域网。因此,学习Ethernet技术对深入掌握局域网知识是非常重要的。本课程设计的目的是模拟Ethernet帧的发送过程,使读者熟悉Ethernet帧的数据发送流程,即CSMA/CD工作流程。编写程序模拟Ethernet节点的数据发送流程。-Currently, Ethernet is the most widely used LAN. Therefore, learning to master the LAN Ethernet technology for