-
CSharpTCP
基于TCP的网络编程,用C#语言编写,实现客户端与服务器之间的通信(TCP-based network programming with C# language, the communication between the client and the server)
- 2013-01-02 11:25:57下载
- 积分:1
-
WinpkFilter
一个高性能的网络数据包处理架构,利用WinpkFilter可以利用应用层函数直接对数据包进行处理,甚至可以在应用层函数sleep()延缓数据包发送(WinpkFilter is a high performance packet filtering framework for Windows that allows developers to transparently filter (view and modify) raw network packets with minimal impact on network activity without having to write low level TDI or NDIS driver code.
WinpkFilter is more than just a firewall development kit for Windows. With WinpkFilter you can make an application that inserts itself into the Windows network stream: custom firewall solution, internet connection sharing (NAT), IP shaper, VPN and many other low-level network solutions completely in user-mode using your favorite development environment: Visual C++, Visual C#, Delphi, Visual Basic, C++ Builder and etc.
Using WinpkFilter requires no experience in kernel mode programming on your behalf since WinpkFilter provides you with powerful user level API. However, if you need to implement your solution (to achieve better performance) in kernel mode you can use well-documented raw IOCTL interface as well. )
- 2020-10-04 18:07:40下载
- 积分:1
-
C06策略
c06tb套利交易策略源码,源码为人人宽客编写分享(C06tb arbitrage strategy source code, source code for everyone to share quants written)
- 2017-09-22 09:54:00下载
- 积分:1
-
Appendix26
Icmp高级编程 代码在vc++6.0下调试通过(ICMP high-level programming code vc++ 6.0 debugging through)
- 2008-08-21 17:20:39下载
- 积分:1
-
44810407
Desktop drawing program, for beginners to understand the vc code is a good example, performance fun and easy to learn
- 2018-12-31 11:33:10下载
- 积分:1
-
Socket
socket 通讯 事例 源码,不多哦,大家可以看看(socket sourse code,this is veay good)
- 2014-01-15 11:46:42下载
- 积分:1
-
-个完整的ftp程序源代码
关于FTP的代码,支持网络间的文件传输,用户权限的设定.(on FTP code, the support network file transfer, set user privileges.)
- 2005-05-17 21:15:40下载
- 积分:1
-
DVRServerCenter
完成端口服务器,支持同步发送接收,支持内存池,支持简单丢包算法。(Completion port server to support simultaneous sending and receiving, support memory pool to support a simple algorithm for packet loss.)
- 2010-01-08 14:22:45下载
- 积分: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
-
QosSvr
简易TCP通讯服务器端,QosClt为客户端。多个客户端间的通讯需要基于服务器,即通过服务器转发。(Simple TCP communication server, QosClt for the client. Communication between multiple clients need a server-based, that is transmitted through the server.)
- 2013-09-09 13:50:32下载
- 积分:1