|
From: Jonathan L. <le...@us...> - 2006-11-28 19:19:25
|
Update of /cvsroot/pyxida/Pyxida/src/edu/harvard/syrah/pyxida In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5502/src/edu/harvard/syrah/pyxida Modified Files: Pyxida.java Log Message: added USE_ICMP Index: Pyxida.java =================================================================== RCS file: /cvsroot/pyxida/Pyxida/src/edu/harvard/syrah/pyxida/Pyxida.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Pyxida.java 28 Nov 2006 18:49:35 -0000 1.12 --- Pyxida.java 28 Nov 2006 19:19:24 -0000 1.13 *************** *** 26,29 **** --- 26,32 ---- public static final int COMM_PORT = Integer.parseInt(Config.getConfigProps().getProperty("pyxida.port", "55500")); + public static final boolean USE_ICMP = Boolean.parseBoolean(Config.getConfigProps().getProperty("pyxida.use_icmp", "false")); + + private static Pyxida pyxida = null; |