⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ricd.java

📁 Remote Internet Connect简化了从其它运行操作系统的机子上将一个Linux系统连接到Internet的过程。用户可以用一个简单的GUI加快连接、断开连接、或查看谁在线上。
💻 JAVA
字号:
/*
 * RIC 2 Server Release. by Harry Otten (c) Copyright 2003 hotten@dds.nl
 * Check out http://www.hotten.dds.nl/ric/
 * 
 

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.
*/

import java.net.*;  // for Socket, ServerSocket, and InetAddress
import java.io.*;   // for IOException and Input/OutputStream
import java.util.Vector;
import java.lang.reflect.Array;



public class RICd {

	public final static String VERSION = "0.92";
	public final static String VERSIONTITLE = "RIC-2 Server ";
	

	public static void main(String args[]) {

		System.out.println(RICd.VERSIONTITLE + RICd.VERSION + " starting..\n");
		
		// The class that read the config file
		Config config = new Config();
		
		CheckConnection checkConnection;
		MessagesServer messagesServer;

		
		if (config.readSettings()){

			/* Read the parameter for RIC and setting the values the parameter tell us to */
    	 	int teller=0;
    	 	
    	 	boolean testMode=false;
    	 	    	 	
    	 	while(teller<Array.getLength(args)) {
    	 		if (args[teller].equals("test")) testMode=true; 		// to stay compatible
    	 		else if (args[teller].equals("-test")) testMode=true;
    	 		
    	 		teller++;
    	 	} 

			Server server = new Server(config,testMode);	
    	 	
    	 	checkConnection = new CheckConnection(server,config);
  		  	checkConnection.start();  // it's a thread
  		  	
  		  	messagesServer = new MessagesServer(server);
  		  	messagesServer.start();   // quess what its also a thread ;-)
    	 	
    	 	// go wild!
    	 	server.run();
    	 	
    	 	checkConnection.interrupt(); // make sure he stops
    	 	messagesServer.quit();       // stopping the messagesServer
    	 	System.out.println(RICd.VERSIONTITLE + RICd.VERSION + " stopt");
		} else System.out.println(RICd.VERSIONTITLE + RICd.VERSION + " aborting!");
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -