1 16 package org.apache.commons.net; 17 18 import java.io.InputStream ; 19 20 42 43 public final class CharGenTCPClient extends SocketClient 44 { 45 46 public static final int SYSTAT_PORT = 11; 47 48 public static final int NETSTAT_PORT = 15; 49 50 public static final int QUOTE_OF_DAY_PORT = 17; 51 52 public static final int CHARGEN_PORT = 19; 53 54 public static final int DEFAULT_PORT = 19; 55 56 60 public CharGenTCPClient () 61 { 62 setDefaultPort(DEFAULT_PORT); 63 } 64 65 74 public InputStream getInputStream() 75 { 76 return _input_; 77 } 78 } 79 80 81 82 83 | Popular Tags |