3

我不知道为什么我会收到以下错误。任何人都可以对此有所了解吗?

System.Net.Sockets.SocketeException: An invalid argument was supplied Error Code:10022 [closed]

private void btnStart_Click(object sender, EventArgs e)
        {

 try
            {
                epLocal = new IPEndPoint(IPAddress.Parse(txtIP1.Text), Convert.ToInt32(txtPort1.Text));
                sck.Bind(epLocal);
                epRemote = new IPEndPoint(IPAddress.Parse(txtIP2.Text), Convert.ToInt32(txtPort2.Text));
              //Here Error Occures I dont know what is my mistake?
                sck.Bind(epRemote);
                byte[] buffer = new byte[1500];
                sck.BeginReceiveFrom(buffer, 0, buffer.Length, SocketFlags.None, ref epRemote, new AsyncCallback(MessageCallBack), buffer);
                btnStart.Text = "Connected";
                btnStart.Enabled = false;
                btnSend.Enabled = true;
                txtMessage.Focus();
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
4

1 回答 1

4

您正在将同一个套接字绑定到多个 Endpoint 对象,这就是您收到 InvalidArgument 异常的原因,您一次只能将一个套接字绑定到一个 IPEndPoint 对象。

当您尝试监听公共 IP 地址和本地 IP 时,请尝试这个

 IPEndPoint ep =  new  IPEndPoint(IPAddress.Any, yourportnumber );
 sck.Bind(ep) ; 

这将创建一个侦听器来侦听您 PC 的所有 IP 地址,否则您最好使用单独的套接字对象

如果我是你,我不会IPAddress从 a解析本地,textbox而是使用类似的东西IPAddress.Loopback

于 2013-11-09T10:12:03.650 回答