I'll start from the beginning. I have a Login Server and a Game Server.
The Login Server has 2 Selector threads running. (1) Selector thread for Client connections, (2) Selector thread for Game Server connections.
The Game Server has 1 Selector thread for Client connections.
To connect the Game Server to the Login Server I do the following:
while (true){
System.out.print("Connecting to Login Server...\n");
try{
SocketChannel socketChannel = SocketChannel.open(new InetSocketAddress(LoginServerConfig.LOGIN_HOST_ADDRESS,
LoginServerConfig.PORT));
socketChannel.configureBlocking(false);
_connection = new LoginServerConnection(socketChannel, _nioServer);
break;
} catch (IOException exception){
System.out.print("Can't connect to Login Server...\n");
}
}
SocketChannel is being registered under Game Server's Selector thread.
A new Game Server connection IS created at the Login Server.
The Game Server should write a packet when it connects to the Login Server but Game Server's Selector thread gets stuck when registering that SocketChannel (I guess) and nothing happens. And, for example, when I try to check for an open Game Server's port via website, Game Server's Selector threads gets unstuck, packet gets sent and everything's fine.
P.S. It's not like there's nothing to write. It doesn't even come to the part where it should write something.
(Or maybe it's the whole Game Server that gets stuck... Don't known)
Any ideas?