Home | History | Annotate | Download | only in network

Lines Matching defs:connectToServer

121     public static Client connectToServer( String host, int hostPort ) throws IOException
123 return connectToServer( DEFAULT_GAME_NAME, DEFAULT_VERSION, host, hostPort, hostPort );
130 public static Client connectToServer( String host, int hostPort, int remoteUdpPort ) throws IOException
132 return connectToServer( DEFAULT_GAME_NAME, DEFAULT_VERSION, host, hostPort, remoteUdpPort );
139 public static Client connectToServer( String gameName, int version,
142 return connectToServer( gameName, version, host, hostPort, hostPort );
161 public static Client connectToServer( String gameName, int version,
179 public void connectToServer( String host, int port, int remoteUdpPort ) throws IOException
181 connectToServer( InetAddress.getByName(host), port, remoteUdpPort );
184 public void connectToServer( InetAddress address, int port, int remoteUdpPort ) throws IOException