Read both the server and port from system properties.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1579 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-07-16 05:44:29 +00:00
parent a2339cea0b
commit 6b9424128d
@@ -1,5 +1,5 @@
//
// $Id: MiCasaApp.java,v 1.8 2002/07/12 17:01:28 mdb Exp $
// $Id: MiCasaApp.java,v 1.9 2002/07/16 05:44:29 mdb Exp $
package com.threerings.micasa.client;
@@ -52,11 +52,23 @@ public class MiCasaApp
Client client = _client.getContext().getClient();
// read our server and port settings
String server = System.getProperty("server");
if (server != null) {
// indicate which server to which we should connect
client.setServer(server, Client.DEFAULT_SERVER_PORT);
if (server == null) {
server = "localhost";
}
int port = Client.DEFAULT_SERVER_PORT;
String portstr = System.getProperty("port");
if (portstr != null) {
try {
port = Integer.parseInt(portstr);
} catch (NumberFormatException nfe) {
Log.warning("Invalid port specification '" + portstr + "'.");
}
}
// pass them on to the client
client.setServer(server, port);
// configure the client with some credentials and logon
String username = System.getProperty("username");