我正在开发一个使用套接字编程的项目,但是当使用相同的套接字多次时,即使在每次使用套接字关闭listener()
之后:当我运行应用程序时给出错误:
通常只允许使用每个套接字地址(协议/网络地址/端口)
我真的很担心。有人可以帮助我吗?
这是我正在使用的代码,我正在关闭所有连接
TcpClient tcpClient;
TcpListener tcpListener;
byte[] ipaddress = new byte[4];
string ip = ConfigurationManager.AppSettings["IP"].ToString();
string[] ips = ip.Split('.');
ipaddress[0] = (byte)Convert.ToInt32(ips[0]);
ipaddress[1] = (byte)Convert.ToInt32(ips[1]);
ipaddress[2] = (byte)Convert.ToInt32(ips[2]);
ipaddress[3] = (byte)Convert.ToInt32(ips[3]);
int portNumber = Convert.ToInt32(ConfigurationManager.AppSettings["Port"]);
tcpListener = new TcpListener(new IPAddress(ipaddress), portNumber);
tcpListener.Start();
tcpClient = new TcpClient();
tcpClient.NoDelay = true;
try
{
tcpClient.ReceiveTimeout = 1;
tcpClient = tcpListener.AcceptTcpClient();
}
catch (Exception ex)
{
tcpClient.Close();
tcpListener.Stop();
}
NetworkStream networkStream = tcpClient.GetStream();
byte[] bytes = new byte[networkStream.Length];
try
{
networkStream.ReadTimeout = 2000;
networkStream.Read(bytes, 0, bytes.Length);
}
catch (Exception ex)
{
tcpClient.Close();
tcpListener.Stop();
}
string returndata = Encoding.Default.GetString(bytes);
tcpClient.Close();
tcpListener.Stop();
return returndata;
答案 0 :(得分:1)
您确定要选择一个独一无二的端口吗?
您是否尝试过只使用一次端口?
确保在重新打开套接字之前真正处理连接对象等。如果没有更多的实施细节,很难知道。