|
I receive the same messages like lkc:
GameServer: MasterSocket:
protected Socket ServerSocket;
protected const int LOGIN_PORT = 9958;
protected const string SERVER_IP = "5.114.110.32";
protected const string SITE_IP = "5.114.110.32";
protected const int AUTH_PORT = 5817;
protected const int GAME_PORT = 5816;
protected string ServerName;
protected static bool Continue = true;
GameServer: Database Connections:
public const string USER_NAME = "root";
public const string PASSWORD = "123456789";
public const string SERVER = "127.0.0.1";
public const string DATA_BASE = "conqueremu";
public static MySqlConnection DBConnection = null;
public static MySqlConnection NewConnection()
LoginServer: MasterSocket:
protected Socket LoginSocket;
protected const int LOGIN_PORT = 9958;
protected const string SERVER_IP = "5.114.110.32";
protected const string SITE_IP = "5.114.110.32";
protected const int AUTH_PORT = 5817;
protected const int GAME_PORT = 5816;
protected string ServerName;
protected static bool Continue = true;
LoginServer: Database Connection:
public const string USER_NAME = "root";
public const string PASSWORD = "123456789";
public const string SERVER = "127.0.0.1";
public const string DATA_BASE = "conqueremu";
public static MySqlConnection NewConnection()
Packet Processor:
if(ServerName == "MythCo")
{
/*if(AuthSocket.Authorize(AccountName, Key, false))
{
CSocket.Send(Packets.AuthResponse("66.187.101.86", Key1, Key2));
}
else
{
CSocket.Disconnect();
}*/
if(AuthSocket.Authorize(AccountName, Key, false))
{
CSocket.Send(Packets.AuthResponse("127.0.0.1", Key1, Key2));
My hamachi ip is 5.114.110.32.
I have a modem(router) HUAWEI HG510, i have used port forwarding for 5816, 5817 and 9958
When i want to make 1 account, i go to navicat and write the username in that table, then i connect to that account from client, the bar freeze and on loginserver write that "SetPassword", then i cancel the apllication and reenter. But this time or freeze the bar on half, or on gameserver write connection timed out.
And i try to change SITE_IP but the same.
Pls help me.
|