-1

我有一个程序,多个客户端可以使用套接字连接到服务器:

private void performConnect()
{
    while (true)
    {
        if (myList.Pending())
        {
            thrd = thrd + 1;
            tcpClient = myList.AcceptTcpClient();

            IPEndPoint ipEndPoint = (IPEndPoint)tcpClient.Client.RemoteEndPoint;
            string clientIP = ipEndPoint.Address.ToString();
            nStream[thrd] = tcpClient.GetStream();
            currentMsg = "\n New IP client found :" + clientIP;
            recieve[thrd].Start();

            this.Invoke(new rcvData(addNotification));
            try
            {
                addToIPList(clientIP);

            }
            catch (InvalidOperationException exp)
            {
                Console.Error.WriteLine(exp.Message);
            }
            Thread.Sleep(1000);
        }           
    }       
}

然后服务器可以使用此代码向选定的客户端发送数据(聊天消息)。

private void sendData(String data)
{
    IPAddress ipep =IPAddress.Parse(comboBox1.SelectedItem.ToString());
    Socket server = new Socket(AddressFamily.InterNetwork , SocketType.Stream, ProtocolType.Tcp);
    IPEndPoint ipept = new IPEndPoint( ipep, hostPort);
    NetworkStream nStream = tcpClient.GetStream();
    ASCIIEncoding asciidata = new ASCIIEncoding();
    byte[] buffer = asciidata.GetBytes(data);
    if (nStream.CanWrite)
    {
        nStream.Write(buffer, 0, buffer.Length);
        nStream.Flush();
    }
}

问题是无论我从组合框中选择什么 IP,我发送的消息都将始终定向/发送到连接到服务器的最后一个 IP。请有人指出我的错误!所有帮助将不胜感激。

4

1 回答 1

0

看看那些行:

IPAddress ipep =IPAddress.Parse(comboBox1.SelectedItem.ToString());
Socket server = new Socket(AddressFamily.InterNetwork , SocketType.Stream, ProtocolType.Tcp);
IPEndPoint ipept = new IPEndPoint( ipep, hostPort);
NetworkStream nStream = tcpClient.GetStream();

您正在创建一个新套接字,但您正在将数据发送到存储在tcpClient全局变量中的套接字(因为它没有在方法中定义),因此完全忽略了从组合框中解析的 IPEndPoint。

您不应该创建新的套接字来向客户端发送数据。相反,将所有客户端存储在一个集合中,并根据组合框的输入检索适当的客户端。

于 2013-07-13T08:10:48.803 回答