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