登录
首页 » C++ Builder » TCP服务器端和客户端程序

TCP服务器端和客户端程序

于 2017-12-29 发布 文件大小:738KB
0 292
下载积分: 1 下载次数: 7

代码说明:

  使用C++ builder的TCP组件开发的服务器端和客户端程序,可以进行二进制形式的通信(The server - side and client - side programs developed using the TCP component of C++ builder can communicate in binary form)

文件列表:

TCP组件实验\client\Client.bpr, 3654 , 2017-12-27
TCP组件实验\client\Client.cpp, 1069 , 2017-12-27
TCP组件实验\client\Client.exe, 35328 , 2017-12-28
TCP组件实验\client\Client.obj, 17715 , 2017-12-28
TCP组件实验\client\Client.res, 876 , 2017-12-27
TCP组件实验\client\Client.tds, 2162688 , 2017-12-28
TCP组件实验\client\Unit1.cpp, 3741 , 2017-12-28
TCP组件实验\client\Unit1.ddp, 51 , 2017-12-28
TCP组件实验\client\Unit1.dfm, 1764 , 2017-12-27
TCP组件实验\client\Unit1.h, 1699 , 2017-12-27
TCP组件实验\client\Unit1.obj, 93152 , 2017-12-28
TCP组件实验\client\Unit1.~cpp, 3737 , 2017-12-28
TCP组件实验\client\Unit1.~ddp, 51 , 2017-12-28
TCP组件实验\client\Unit1.~dfm, 1764 , 2017-12-27
TCP组件实验\client\Unit1.~h, 1699 , 2017-12-27
TCP组件实验\server\Server.bpr, 3655 , 2017-12-26
TCP组件实验\server\Server.cpp, 1072 , 2017-12-26
TCP组件实验\server\Server.exe, 35328 , 2017-12-28
TCP组件实验\server\Server.obj, 17720 , 2017-12-28
TCP组件实验\server\Server.res, 876 , 2017-12-26
TCP组件实验\server\Server.tds, 2162688 , 2017-12-28
TCP组件实验\server\Unit1.cpp, 4096 , 2017-12-28
TCP组件实验\server\Unit1.ddp, 51 , 2017-12-28
TCP组件实验\server\Unit1.dfm, 1934 , 2017-12-27
TCP组件实验\server\Unit1.h, 1897 , 2017-12-27
TCP组件实验\server\Unit1.obj, 108975 , 2017-12-28
TCP组件实验\server\Unit1.~cpp, 4078 , 2017-12-27
TCP组件实验\server\Unit1.~ddp, 51 , 2017-12-27
TCP组件实验\server\Unit1.~dfm, 1934 , 2017-12-27
TCP组件实验\server\Unit1.~h, 1897 , 2017-12-27
TCP组件实验\client, 0 , 2017-12-28
TCP组件实验\server, 0 , 2017-12-28
TCP组件实验, 0 , 2017-12-26

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • TCP-PortMap
    实现 tcp的端口映射 不同于udp的实现方法(Realization of TCP port mapping from UDP realization method)
    2012-04-23 17:32:07下载
    积分:1
  • dllNecSock
    将socket封装进DLL,提供上层应用,简单方便(Into the socket package DLL, the upper application is simple and convenient)
    2012-07-13 21:13:01下载
    积分:1
  • flcating-physcal
    运动的球,一个api小程序,适合初学者学习,()
    2017-11-16 09:02:54下载
    积分: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
  • PEMFC
    PEMFC的simulink使用模型 包含电堆模型 氢气氧气供应系统模型,热传输模型,可进行仿真,参数可自行设置。(The simulink model of the PEMFC includes a model of a hydrogen reactor, an oxygen supply system model, and a heat transfer model that can be simulated and the parameters can be set.)
    2021-04-02 17:09:07下载
    积分:1
  • MyQQ
    企业QQ系统,通过服务端,可让多个客户端进行文字和图像的通信。(QQ enterprise system, through the server, allowing multiple clients for text and image communications.)
    2013-09-06 00:08:33下载
    积分:1
  • TCPsocket
    TCP和UDP socket编程,向固定服务器发送学号姓名信息,用udp从服务器获得一个随机字符串(TCP and UDP socket programming, Student ID Name information sent to the fixed server udp from server to obtain a random string)
    2012-10-21 09:39:54下载
    积分:1
  • stund_0.92_Jun06
    一个UDP穿透NAT的例子,遵守RFC3489(a UDP penetrate NAT example, compliance with RFC3489)
    2004-11-17 23:51:28下载
    积分:1
  • TCPTest
    简单TCP双向通讯例子,实现客户端服务器端的双向通讯。(Simple the TCP bidirectional communication example, to achieve the client server-side two-way communication.)
    2012-11-08 13:37:54下载
    积分:1
  • MFC
    计算机网络 多播 用C++编写 绝对可以用。。。。(计算机网络多播)
    2010-12-12 13:07:25下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载