-
network_report
计算机网络的实验报告和源码,包含聊天软件的源玛(An experimental computer network reports and source code, including chat software source ma)
- 2009-01-03 16:51:44下载
- 积分:1
-
Using-bazic
使用wincap的网络测试工具,可以实现基本网络测试内容(Using wincap network testing tools, can realize the basic contents of network testing)
- 2017-03-31 12:47:37下载
- 积分:1
-
socket
TCP CS 模式文件传输可以下载和上传文件,也可浏览服务器端文件(TCP CS file transportation)
- 2010-11-08 21:48:17下载
- 积分:1
-
LXJZ
Human Resource Management System()
- 2018-05-18 10:00:36下载
- 积分: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
-
netspeedspyer
Windows的网络流量速度检测。使用MFC作为开发平台。(A net speed spyer using MFC platform .)
- 2012-02-21 15:20:48下载
- 积分:1
-
C# 邮件群发示例 源码下载
实现邮件群发功能,可以设置定时,支持HTML邮件、支持虚拟邮箱
- 2015-01-26下载
- 积分:1
-
C# 汉字添加拼音 带声调实例源码
C# 汉字添加拼音 带声调实例源码
- 2015-02-27下载
- 积分:1
-
ntop-3.2
ntop 3.2的源代码,其官方网站为http://222.ntop.org(ntop 3.2 source code for its official website http://222.ntop.org)
- 2006-08-05 10:30:24下载
- 积分:1
-
2009shiyan1
2、Socket编程
凡是基于网络应用的程序都离不开Socket。 与网络有关的简单VC编程 Socket的意思是套接字,是计算机与计算机之间通信的接口。使用Winsock提供的API函数是最基本的网络编程技术。
(2 Socket programming any web-based application programs can not be separated Socket. Simple VC network-related programming meant Socket socket, is communication between the computer and computer interface. Use Winsock provides API functions is the most basic network programming.)
- 2009-11-12 15:06:31下载
- 积分:1