Package de.dwerth.gntpserver.gntp

Examples of de.dwerth.gntpserver.gntp.InputThread


      // wait for Connections
      System.out.println("server fully up and running");
      while (true) {
        Socket s = server.accept();
        System.out.println("new connection from " + s.getInetAddress());
        InputThread ct = new InputThread(s);
        ct.start();
      }
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      if (server != null) {
View Full Code Here

TOP

Related Classes of de.dwerth.gntpserver.gntp.InputThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.