-
分隙ALOHA:
该协议下,用户在产生帧后总是等到下一帧时开始时才发送,所以,对于结构FrameTime_struct,其m_Frame[i](相对时间)总...
分隙ALOHA:
该协议下,用户在产生帧后总是等到下一帧时开始时才发送,所以,对于结构FrameTime_struct,其m_Frame[i](相对时间)总是为零。发生冲突后同样等待一个随机时间重发。
所以只要满足当前帧时只有一帧发送,就可以发送成功,而不需考虑上一帧时的情况。
-points gap ALOHA : under the agreement, users always have a frame after frame until the next time when this started, so that the structure FrameTime_struct, m_Frame [i] (relative to time) always zero. After the conflict the same time waiting for a random re-issued. Therefore, as long as the current frame to meet only one this, we can successfully sent, and not considering one at the situation.
- 2022-07-19 22:52:36下载
- 积分:1
-
messaging software using Visual B prepared.
串口短信收发软件,使用Visual B编写。-messaging software using Visual B prepared.
- 2022-02-22 11:15:49下载
- 积分:1
-
即时聊天(服务器和客户端)
简单的tcp/ip 通讯协议,详尽的客户端和服务端 接受和发送信息。可以在线IM交流、建立会议室(可以设置密码),会员(密码、头像等信息)和部门实现在线管理。 Server/Client分别为服务端和客户端,设置服务端可以实现在线管理,默认端口号10000。 数据库采用的是Access
- 2022-03-18 03:00:07下载
- 积分:1
-
用VC++ Socket编程 简单的Tcpip服务器的源代码格式
用VC++ Socket编程 简单的Tcpip服务器的源代码格式-With VC++ Socket programming simple Tcpip server source code format
- 2022-05-14 05:14:00下载
- 积分:1
-
一个和NAT相关的程序
一个和NAT相关的程序-a NAT and related procedures
- 2022-05-21 04:32:22下载
- 积分:1
-
通过本程序,我们可以访问局域网内的其他计算机的文件资源。通过学习,应学会如何使用CSocket类来对制定端口进行扫描。...
通过本程序,我们可以访问局域网内的其他计算机的文件资源。通过学习,应学会如何使用CSocket类来对制定端口进行扫描。-Through this process, we can access other computers on the LAN of file resources. Through the study, should learn how to use the CSocket class to the development of port scan.
- 2022-03-19 19:36:32下载
- 积分:1
-
1:布局重新整理,使其更合理,修正慢的问题!
2:首页增加留言显示!
3:修正本地软件无法下载问题!
4:修正装备展示内容限制问题,可以无限添加!...
1:布局重新整理,使其更合理,修正慢的问题!
2:首页增加留言显示!
3:修正本地软件无法下载问题!
4:修正装备展示内容限制问题,可以无限添加!
5:删除合作资源,增加了新手指南!
****************************************************
保持3.3所有功能
V3.4更新内容
1:解决后台网站设置问题
2:增加菜单管理功能!(分顶部导航,顶部版权)
3:客服部分,电话,QQ采用无限制!
4:增加在线统计修改功能!
5:修正新手指南首页不显示错误!
6:修正了新手指南内容不换行错误!
7:修正新闻公告注入BUG!
8:修正首页只能显示一张照片的错误!
由于时间匆忙,请各位手动升级
V3.4最新功能,导航菜单添加管理,
升级方法:
新建表:Gq_menu
字段:id 自动编号
字段:menuid 长整型
字段:title 字符型 50
字段:url 字符型 随意
字段:open 逻辑型
字段:foot 逻辑型
字段:pass 逻辑型
新建表:Gq_config
字段分别为:qq dh sf RMB bbs
全部为备注型
-1 : layout re-organized to make it more reasonable, that the problem of slow! 2 : Home show increased voice! 3 : Amendments to the local software can not be downloaded! 4 : Amendments equipment display content restrictions, can add unlimited! 5 : delete cooperation resources, the increase is coming!**************************************************** maintain all the functions SP 3.3 update 1 : background website set up to solve
- 2022-03-04 04:36:30下载
- 积分:1
-
本源码是一个网页,可从互联网上获取电子邮件地址…
此源代码是一个网页,可从互联网上获取电子邮件地址,使用多线程递归算法
- 2022-01-26 05:08:50下载
- 积分:1
-
国内有名的中兴公司的笔试试题,非常实用,对中兴感兴趣的同学有福了!...
国内有名的中兴公司的笔试试题,非常实用,对中兴感兴趣的同学有福了!-ZTE Corporation, the domestic well-known written examination questions, very practical, for students interested in ZTE Blessed!
- 2022-08-21 14:53:12下载
- 积分:1
-
熟悉Http协议的请求和响应格式,编写一个简单的Http服务器。
基本要求:
1 正确解析Http请求,实现简单的GET请求回应。
2 模拟...
熟悉Http协议的请求和响应格式,编写一个简单的Http服务器。
基本要求:
1 正确解析Http请求,实现简单的GET请求回应。
2 模拟一个对象(如:文件index.html)的GET回应(如:回应一个字符串),对于其他的对象,则根据Http响应格式回应对象不存在信息。
3 通过浏览器可检测自己的程序。如:输入http://the.ip.of.your.pc:serverPort/index.html,查看其响应结果。
4 对http请求的处理必须采用多进程实现,即主进程负责等待请求连接,每当收到一个请求后,产生一个子进程对该请求做单独处理,主进程继续等待新请求,子进程在处理完其请求后结束自己。详细要求参考课本要求。(多进程编程参考函数fork())
-Http familiar with the agreement of the request and response format, write a simple Http server.
Basic requirements:
Http parsing a proper request, to achieve a simple GET request to respond.
2 analog an object (such as: file index.html) of the GET response (such as: in response to a string), for other objects, then according to Http response format, the information to respond to the object does not exist.
3 can be detected through the browser s own procedures. Such as: Enter http://the.ip.of.your.pc:serverPort/index.html, see the results of its response.
4 pairs of http request processing must be used to achieve multi-process
- 2023-04-01 20:15:03下载
- 积分:1