InetSocketAddress reliableAddress = new InetSocketAddress(InetAddress.getLocalHost(), 0);
InetSocketAddress fastAddress = new InetSocketAddress(InetAddress.getLocalHost(), 0);
client = new JGNClient(reliableAddress, fastAddress);
client.addMessageListener(this);
client.addMessageListener(new DebugListener("ChatClient>"));
JGN.createThread(client).start();
InetSocketAddress reliableServerAddress = new InetSocketAddress(InetAddress.getByName("10.100.1.49"), 1100);
InetSocketAddress fastServerAddress = new InetSocketAddress(InetAddress.getByName("10.100.1.49"), 2000);