server error, please help

09/20/2011 06:43 demon41510#1
hey, error when i load server, picture of whats happening is attached
09/20/2011 12:12 m7mdxlife#2
well, i dont know anything about coding private servers but i know for sure that making the picture a lil bigger would help!
09/20/2011 12:34 BaussHacker#3
Bigger image thank you.
09/20/2011 17:59 demon41510#4
i tryed to make it bigger but i cant ill stay on and ill tv u if u want to c what it says
09/20/2011 18:02 m7mdxlife#5
maybe copy/paste what it says?
09/20/2011 23:45 demon41510#6
i hopr this is better
09/21/2011 00:42 m7mdxlife#7
as i said, i don't know anything in coding servers but seeing from the screenshot its most likely that a connection or IP is miss configured
09/21/2011 03:43 pro4never#8
#Moved

Use the PRIVATE SERVER section. This one was for official conquer online discussion not programming or anything related to copservers.
09/21/2011 12:01 BaussHacker#9
The ServerIP is not a valid IP I think.
09/21/2011 12:53 { Angelius }#10
by looking at the screen shoot i guess you are using the terato source which is a shitty source however . it has a fucked up socket system that needs to be changed and obviously you dont know how to change it so her is a quick fix .

open the connection.cps file its .cs not .cps and replace the listen() void with this .

Quote:
private void Listen()
{
try
{
XYNetCommon.SetSocketPermission();
Listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
Listener.Bind(new IPEndPoint(IPAddress.Any, m_nPort));
Listener.Listen(500);
Listener.BeginAccept(new AsyncCallback(WaitConnections), new StateObj());
}
catch (SocketException X) { Program.WriteLine(X); }
}
and that should do it .
Good Luck.