Interface TelnetNotificationHandler


public interface TelnetNotificationHandler
The TelnetNotificationHandler interface can be used to handle notification of options negotiation commands received on a telnet session.

The user can implement this interface and register a TelnetNotificationHandler by using the registerNotificationHandler() of TelnetClient to be notified of option negotiation commands.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The remote party sent a COMMAND.
    static final int
    The remote party sent a DO command.
    static final int
    The remote party sent a DONT command.
    static final int
    The remote party sent a WILL command.
    static final int
    The remote party sent a WONT command.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    receivedNegotiation(int negotiation_code, int option_code)
    Callback method called when TelnetClient receives a command or option negotiation command
  • Field Details

  • Method Details

    • receivedNegotiation

      void receivedNegotiation(int negotiation_code, int option_code)
      Callback method called when TelnetClient receives a command or option negotiation command
      Parameters:
      negotiation_code - - type of (negotiation) command received (RECEIVED_DO, RECEIVED_DONT, RECEIVED_WILL, RECEIVED_WONT, RECEIVED_COMMAND)
      option_code - - code of the option negotiated, or the command code itself (e.g. NOP).