1 16 package org.apache.commons.net.telnet; 17 18 23 public class EchoOptionHandler extends TelnetOptionHandler 24 { 25 36 public EchoOptionHandler(boolean initlocal, boolean initremote, 37 boolean acceptlocal, boolean acceptremote) 38 { 39 super(TelnetOption.ECHO, initlocal, initremote, 40 acceptlocal, acceptremote); 41 } 42 43 47 public EchoOptionHandler() 48 { 49 super(TelnetOption.ECHO, false, false, false, false); 50 } 51 52 60 public int[] answerSubnegotiation(int suboptionData[], 61 int suboptionLength) 62 { 63 return null; 64 } 65 66 71 public int[] startSubnegotiationLocal() 72 { 73 return null; 74 } 75 76 81 public int[] startSubnegotiationRemote() 82 { 83 return null; 84 } 85 } 86 | Popular Tags |