public interface TelnetNotificationHandler
The user can implement this interface and register a TelnetNotificationHandler by using the registerNotificationHandler() of TelnetClient to be notified of option negotiation commands.
Modifier and Type | Field and Description |
---|---|
static int |
RECEIVED_COMMAND
The remote party sent a COMMAND.
|
static int |
RECEIVED_DO
The remote party sent a DO command.
|
static int |
RECEIVED_DONT
The remote party sent a DONT command.
|
static int |
RECEIVED_WILL
The remote party sent a WILL command.
|
static int |
RECEIVED_WONT
The remote party sent a WONT command.
|
Modifier and Type | Method and Description |
---|---|
void |
receivedNegotiation(int negotiation_code,
int option_code)
Callback method called when TelnetClient receives an
command or option negotiation command
|
static final int RECEIVED_DO
static final int RECEIVED_DONT
static final int RECEIVED_WILL
static final int RECEIVED_WONT
static final int RECEIVED_COMMAND
void receivedNegotiation(int negotiation_code, int option_code)
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).Copyright © 2001–2017 The Apache Software Foundation. All rights reserved.