您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Socket接口原理及用C_语言实现

  2. Socket接口原理及用C_语言实现//client端 using System; using System.Text; using System.IO; using System.Net; using System.Net.Sockets; namespace socketsample {  class Class1  {   static void Main()   {    try    {     int port = 2000;     string host = "127.0.0.
  3. 所属分类:网络基础

    • 发布日期:2011-09-23
    • 文件大小:9kb
    • 提供者:z498544419
  1. C_完整的通信代码(点对点,点对多,同步,异步,UDP,TCP)

  2. C_完整的通信代码(点对点,点对多,同步,异步,UDP,TCP) C# code namespace UDPServer { class Program { static void Main(string[] args) { int recv; byte[] data = new byte[1024]; //构建TCP 服务器 //得到本机IP,设置TCP端口号 IPEndPoint ipep = new IPEndPoint(IPAddress.Any , 8001); Socket new
  3. 所属分类:C#

    • 发布日期:2011-11-18
    • 文件大小:52kb
    • 提供者:domdom