Package org.apache.commons.net.telnet
Class WindowSizeOptionHandler
java.lang.Object
org.apache.commons.net.telnet.TelnetOptionHandler
org.apache.commons.net.telnet.WindowSizeOptionHandler
Implements the telnet window size option RFC 1073.
- Since:
- 2.0
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionWindowSizeOptionHandler(int nWidth, int nHeight) Constructor for the WindowSizeOptionHandler.WindowSizeOptionHandler(int nWidth, int nHeight, boolean initlocal, boolean initremote, boolean acceptlocal, boolean acceptremote) Constructor for the WindowSizeOptionHandler.
- 
Method SummaryModifier and TypeMethodDescriptionint[]Implements the abstract method of TelnetOptionHandler.Methods inherited from class org.apache.commons.net.telnet.TelnetOptionHandleranswerSubnegotiation, getAcceptLocal, getAcceptRemote, getInitLocal, getInitRemote, getOptionCode, setAcceptLocal, setAcceptRemote, setInitLocal, setInitRemote, startSubnegotiationRemote
- 
Field Details- 
WINDOW_SIZEWindow size option- See Also:
 
 
- 
- 
Constructor Details- 
WindowSizeOptionHandlerConstructor for the WindowSizeOptionHandler. Initial and accept behavior flags are set to false- Parameters:
- nWidth- - Window width.
- nHeight- - Window Height
 
- 
WindowSizeOptionHandlerpublic WindowSizeOptionHandler(int nWidth, int nHeight, boolean initlocal, boolean initremote, boolean acceptlocal, boolean acceptremote) Constructor for the WindowSizeOptionHandler. Allows defining desired initial setting for local/remote activation of this option and behavior in case a local/remote activation request for this option is received.- Parameters:
- nWidth- - Window width.
- nHeight- - Window Height
- initlocal- - if set to true, a- WILLis sent upon connection.
- initremote- - if set to true, a- DOis sent upon connection.
- acceptlocal- - if set to true, any- DOrequest is accepted.
- acceptremote- - if set to true, any- WILLrequest is accepted.
 
 
- 
- 
Method Details- 
startSubnegotiationLocalImplements the abstract method of TelnetOptionHandler. This will send the client Height and Width to the server.- Overrides:
- startSubnegotiationLocalin class- TelnetOptionHandler
- Returns:
- array to send to remote system
 
 
-