port = 9999;
            ip = "222.73.40.208";
            IPAddress ipaddress = IPAddress.Parse(ip);
            IPEndPoint address = new IPEndPoint(ipaddress, port);
          
            IPEndPoint ep = new IPEndPoint(0, 6565);
            client = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
            
           
          
            //LocalEP.Port = 6666;            client.Bind(ep);
            client.Connect(address);
           
           string sendstr = "CONN";
                      byte[] bs = Encoding.ASCII.GetBytes(sendstr);
            client.Send(bs, bs.Length, 0);   这样写有什么问题呢。为什么服务端看到还是随机IP