[ERROR] while starting Conquer-sx V9

04/28/2011 21:34 rofman2008#1
hey guys

as i said am new in coding and installing servers

Got this Error While starting server

[Only registered and activated users can see links. Click Here To Register...]



Can I get Help!

Thanks
04/29/2011 04:18 kill_acvc#2
Quote:
Originally Posted by rofman2008 View Post
hey guys

as i said am new in coding and installing servers

Got this Error While starting server

[Only registered and activated users can see links. Click Here To Register...]



Can I get Help!

Thanks
I shouldn't be helping you because I know some people won't approve.. but whatever, I don't give a shit.
You're probably using an invalid IP or a port that's already being used. These are the only possible problems for this exception.
#Edit
Nevermind what I said, I read the exception description just now.. lol. The problem is that you're using an invalid IP adress for the given protocol. Either the socket system has a problem, that wouldn't be hard to fix if you can code, or the IP you inputed has invalid characters.
04/29/2011 08:29 Secured#3
You're already connected through that socket.
04/29/2011 13:59 fotis007#4
go in connection.cs and find

Code:
XYNetCommon.SetSocketPermission();
Listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
and replace it with

Code:
IPAddress ipAddress = IPAddress.Parse(m_sAddress);
XYNetCommon.SetSocketPermission();
Listener = new Socket(ipAddress.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
with that the error ill fix
04/29/2011 15:40 Secured#5
Quote:
Originally Posted by fotis007 View Post
go in connection.cs and find

Code:
XYNetCommon.SetSocketPermission();
Listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
and replace it with

Code:
IPAddress ipAddress = IPAddress.Parse(m_sAddress);
XYNetCommon.SetSocketPermission();
Listener = new Socket(ipAddress.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
with that the error ill fix
:facepalm:
04/30/2011 20:16 rofman2008#6
Thanks Guys

#Request for closing