--- projects/cms/source/host/java/RunHost.java 2000/11/30 04:22:41 1.1 +++ projects/cms/source/host/java/RunHost.java 2002/05/21 16:47:12 1.5 @@ -1,13 +1,31 @@ +/* + * i-scream central monitoring system + * http://www.i-scream.org.uk + * Copyright (C) 2000-2002 i-scream + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + class RunHost { - public static void main( String[] args){ - - while ( true ){ - JavaHost host = new JavaHost("raptor.ukc.ac.uk", 4567); - } - - } // psvm - - + public static void main( String[] args){ + + while ( true ){ + JavaHost host = new JavaHost(args[0], 4567); + } + + } // psvm -} // class \ No newline at end of file +} // class