[Problem] 5095 Error!

11/11/2010 14:52 killersub#1
okay so I have been developing a 5095 conquer server but encountered problems latey...but the main problem I've encountered is a problem that won't let me login to the client...here's the error the console gives me...:

Code:
System.Net.Sockets.Socket Exception:an established connection was aborted by the software in your host machine.
at System.Net.Sockets.Socket.Send<Byte[] Buffer, Int32 Offset, Int32 size, SocketFlags socketflags>
at System.Net.Sockets.Socket.Send<Byte[] Buffer, Int32 size, SocketFlags socketflags>
at ClientSocket.cs Line: 116
and what I've got there is this whole void(problem marked in red):

Code:
public bool Send(byte[] Data)
        {
            lock (SyncSend)
            {
                if (CSocket.Connected)
                {
                    [COLOR="DarkRed"]Data = Crypt.Encrypt(Data);[/COLOR]
                    try
                    {
                        int sent = CSocket.Send(Data, Data.Length, SocketFlags.None);
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine(e.ToString());
                        Disconnect();
                        Continue = false;
                        return false;
                    }
                    return true;
                }
                else
                {
                    Disconnect();
                    Continue = false;
                    return false;
                }
            }
        }
any help or ideas on what I should do? help would be much appreciated (:!
11/11/2010 15:25 .Beatz#2
Looks like you are running non hamachi?

If you are then your PC is not letting the connection through. Try turning off your firewall and AV and make sure the ports are forwarded.

If you are running hamachi, then just try turning of your AV and Firewall.
11/11/2010 15:40 killersub#3
Quote:
Originally Posted by .Beatz View Post
Looks like you are running non hamachi?

If you are then your PC is not letting the connection through. Try turning off your firewall and AV and make sure the ports are forwarded.

If you are running hamachi, then just try turning of your AV and Firewall.
well my computer never had problems with such a thing...so ur saying I gotta install hamachi to connect to my server lol?

cuz my anti virus doesn't pick up anything related to conquer not even the .exe...
11/11/2010 16:13 .Beatz#4
Quote:
Originally Posted by killersub View Post
well my computer never had problems with such a thing...so ur saying I gotta install hamachi to connect to my server lol?

cuz my anti virus doesn't pick up anything related to conquer not even the .exe...
No, I am saying that the error you have is saying something is blocked. Like a port or something.

It was a quick search using google I found that so I am sure if you search using google then you will find out how to fix it.
11/11/2010 16:25 killersub#5
Quote:
Originally Posted by .Beatz View Post
No, I am saying that the error you have is saying something is blocked. Like a port or something.

It was a quick search using google I found that so I am sure if you search using google then you will find out how to fix it.
well...I didn't know I'd actually have to search google for help since this is a helping section itself =/... but anyways thanks for the help I'm sure I'll make something out of it lol...