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 Details

  • Constructor Details

    • WindowSizeOptionHandler

      public WindowSizeOptionHandler(int nWidth, int nHeight)
      Constructor for the WindowSizeOptionHandler. Initial and accept behavior flags are set to false
      Parameters:
      nWidth - - Window width.
      nHeight - - Window Height
    • WindowSizeOptionHandler

      public 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 WILL is sent upon connection.
      initremote - - if set to true, a DO is sent upon connection.
      acceptlocal - - if set to true, any DO request is accepted.
      acceptremote - - if set to true, any WILL request is accepted.
  • Method Details