I keep getting this error in my log file...
"An error occured while attempting to connect: 10061"
I am attempting to connect to an external program that is listening on port 9000. That program is working fine and has been tested to accept incoming connections on that port.
Here is my code...
simulated function InitTCPLink()
{
Resolve ( ServerAddress );
Log("TCP Initiated. Address: "$ServerAddress);
}
event Resolved ( IpAddr Addr )
{
Addr.Port = ServerPort;
BindPort( Addr.Port );
ReceiveMode = RMODE_Event;
LinkMode = MODE_Text;
Log("IP Resolved");
Log("Port: "$Addr.Port);
Open ( Addr );
}
Log file...
ScriptLog: IP Resolved
ScriptLog: Port: 9000
Log: Open: An error occured while attempting to connect: 10061
ScriptLog: TCP Initiated. Address: 127.0.0.1
"An error occured while attempting to connect: 10061"
I am attempting to connect to an external program that is listening on port 9000. That program is working fine and has been tested to accept incoming connections on that port.
Here is my code...
simulated function InitTCPLink()
{
Resolve ( ServerAddress );
Log("TCP Initiated. Address: "$ServerAddress);
}
event Resolved ( IpAddr Addr )
{
Addr.Port = ServerPort;
BindPort( Addr.Port );
ReceiveMode = RMODE_Event;
LinkMode = MODE_Text;
Log("IP Resolved");
Log("Port: "$Addr.Port);
Open ( Addr );
}
Log file...
ScriptLog: IP Resolved
ScriptLog: Port: 9000
Log: Open: An error occured while attempting to connect: 10061
ScriptLog: TCP Initiated. Address: 127.0.0.1
Comment