我正在尝试将多个套接字通信转发到目标套接字。所以我需要与该目标套接字建立多个连接,但是当我第二次尝试连接它时,我得到了这个:
SocketException: No connection could be made because the target machine actively refused it
我认为问题出在套接字的另一端,即端口和主机,并且因为与我的程序相关的端口和目标端口之间已经存在连接,为了有第二个连接,我需要为我的程序提供第二个端口。我希望你们能清楚我的问题。任何想法如何做到这一点?
这是一个测试程序,只是为了显示问题。
using System;
using System.Threading;
using System.Net.Sockets;
using System.Net;
using System.Text;
class Sample
{
private static ManualResetEvent connectDone = new ManualResetEvent(false);
public static void Main()
{
Socket[] s = new Socket[10];
for (int i = 0; i < s.Length; i++)
{
IPAddress ipAddress;
ipAddress = IPAddress.Parse("127.0.0.1");
IPEndPoint localEndp = new IPEndPoint(ipAddress, 1100);
// Create a TCP/IP socket.
s[i] = new Socket(ipAddress.AddressFamily,
SocketType.Stream, ProtocolType.Tcp);
connectDone.Reset();
s[i].BeginConnect(localEndp,
new AsyncCallback(ConnectCallback), s[i]);
connectDone.WaitOne();
s[i].Send(Encoding.ASCII.GetBytes(i.ToString() + ": hi.\r\n"));
}
}
private static void ConnectCallback(IAsyncResult ar)
{
Socket client = (Socket)ar.AsyncState;
// Complete the connection.
client.EndConnect(ar);
// Signal that the connection has been made.
connectDone.Set();
}
}
我什至尝试将我的套接字绑定到不同的端口,但第二个套接字仍然出现该异常。