-
network-coding-ns3-master
NS3模拟环境中实现网络编码模块,增加一个全新的水平之间的传输和IP层实现了两种不同的网络编码协议来提高TCP在无线Mesh网络中的性能(network coding module for NS3)
- 2020-07-21 16:28:45下载
- 积分:1
-
本套代码为开源远程控制类型软件测试版本,主要目的学习及交流远控技术.
守侯---远控客户端 本套代码为开源远程控制类型软件测试版本,主要目的学习及交流远控技术. 功能概括1. 远程屏幕查看及控制,录制远程屏幕到本地AVI文件及保存本地图片.2. 远程摄象头管理,录制远程摄象头到本地AVI文件及监听远程语音.3. 远程文件管理4. 远程进程管理5. 远程服务管理6. 远程窗口管理7. 远程命令行管理8. 远程键盘记录9. DDOS模块简单模拟10. 远程3322动态域名上线测试
- 2014-11-10下载
- 积分:1
-
YCArray
说明: /**
* 动态数组的模板类
* 1.支持字符索引
* 2.方便的添加删除修改任意一项
* 最后更新 2004-8-9 yzh
**1.优化了字符索引的运作方式,使用数组存储
**2.重写了底层数据的存储,将连续性的存储方式改为了非连续,
*** 从而很好有效地支持了“引用”,并且让数据的删除增加变的更为快速
* 用法如:
* YCArray<int,int> test
* test.Add("Number2",4)
* test.Add("Number1",2)
* printf("%d %d",test["Number1"],test["Number2"])
* 显示:
* 2 4
*******
*******
History:
2004-11-19
修改了析构函数,解决了索引没有释放的bug
**/(/*** dynamic array template class* 1. Support characters Index* 2. Add convenience to delete arbitrary* a final update 2004-8-9 yzh** 1. Character Index optimized mode of operation, the use of storage arrays** 2 . a rewrite of the underlying data storage, storage continuity conversion of non-continuous, and thus good*** effective support to the "quote", and let the data changed to delete the more rapid* usage such as :* YCArraylt; int, intgt; test* test. Add ( "Number2", 4)* test.Add ( "Number1", 2)* printf ( "% d% d", test [ "Number1"] test [ "Number2"])* Display :** 2 4************* History : 2004-11-19 revised the destructors, the index did not address the release of bug** /)
- 2005-09-06 13:03:51下载
- 积分:1
-
hyenae-0.35-2
Hyenae是一种高度灵活和平台独立的网络数据包发生器。它允许你复制水平低以太网攻击的情况(如MITM , DOS ,和的DDoS )揭示您的网络中潜在的安全漏洞。(Hyenae is a highly flexible and platform independent network packet generator. It allows you to copy the low level of attacks over Ethernet (such as MITM, DOS, and the DDoS) reveals the potential of your network security vulnerabilities.)
- 2010-11-20 11:32:10下载
- 积分:1
-
kdcxcs2
快递发送单查询通信, 利用了socket(Courier to send single query communication using a socket)
- 2013-01-04 19:39:10下载
- 积分:1
-
TCP
TCP通信示例程序,很好用的网络通信例程(TCP communication sample program, the good network communication routines)
- 2014-03-14 11:25:31下载
- 积分:1
-
C#版本 sharppcap 网络监听源码下载
C#版本 sharppcap 网络监听源码下载
- 2013-10-14下载
- 积分:1
-
C# pop3 邮件接收程序
private void Connect_Click(object sender, System.EventArgs e) { //将光标置为等待状态 Cursor cr = Cursor.Current; Cursor.Current = Cursors.WaitCursor; String a ,b,c; //用110端口新建POP3服务器连接 Server = new TcpClient(PopServer.Text, 110); Status.Items.Clear(); try { //初始化 NetStrm = Server.GetStream(); RdStrm = new StreamReader(Server.GetStream()); Status.Items.Add(RdStrm.ReadLine()); //登录服务器过程 Data = "USER " Username.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); Data = "PASS " Password.Text CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); Status.Items.Add(RdStrm.ReadLine()); //向服务器发送STAT命令,从而取得邮箱的相关信息:邮件数量和大小 Data = "STAT" CRLF; szData = System.Text.Encoding.ASCII.GetBytes(Data.ToCharArray()); NetStrm.Write(szData, 0, szData.Length); //Status.Items.Add(RdStrm.ReadLine()); //改变按钮的状态 Connect.Enabled = false; Disconnect.Enabled = true; Retrieve.Enabled = true; //将光标置回原来状态 Cursor.Current = cr; } catch (InvalidOperationException err) { Status.Items.Add("Error: " err.ToString()); } }
- 2014-11-02下载
- 积分:1
-
Flow_Test_GetIfTable
说明: 监控本地网卡网络流量, 如果有多个网卡, 可分别统计每个网卡的进出网络流量, 并统计总的网络流量.(Monitoring the local LAN network traffic, if there are multiple network cards, network cards can access statistics for each network traffic and overall network traffic statistics.)
- 2008-10-07 17:03:43下载
- 积分:1
-
12864
说明: 点阵式液晶显示片
型号:12864 驱动程序(Dot-matrix liquid crystal display film models: 12864 driver)
- 2009-08-22 14:38:41下载
- 积分:1