FileDocCategorySizeDatePackage
TelnetNotificationHandler.javaAPI DocApache Commons NET 1.4.1 API1968Sat Dec 03 10:05:48 GMT 2005org.apache.commons.net.telnet

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.

author
Bruno D'Avanzo

Fields Summary
public static final int
RECEIVED_DO
The remote party sent a DO command.
public static final int
RECEIVED_DONT
The remote party sent a DONT command.
public static final int
RECEIVED_WILL
The remote party sent a WILL command.
public static final int
RECEIVED_WONT
The remote party sent a WONT command.
Constructors Summary
Methods Summary
public voidreceivedNegotiation(int negotiation_code, int option_code)
Callback method called when TelnetClient receives an option negotiation command.

param
negotiation_code - type of negotiation command received (RECEIVED_DO, RECEIVED_DONT, RECEIVED_WILL, RECEIVED_WONT)

param
option_code - code of the option negotiated