class ITelnetProtocol(iinternet.IProtocol): (source)
Known implementations: twisted.conch.telnet.TelnetProtocol
Undocumented
Method | disable |
Disable the given option locally. |
Method | disable |
Indicate that the peer has disabled this option. |
Method | enable |
Enable the given option locally. |
Method | enable |
Indicate whether the peer should be allowed to enable this option. |
Method | unhandled |
A command was received but not understood. |
Method | unhandled |
A subnegotiation command was received but not understood. |
Inherited from IProtocol
:
Method | connection |
Called when the connection is shut down. |
Method | connection |
Called when a connection is made. |
Method | data |
Called whenever data is received. |
Method | make |
Make a connection to a transport and a server. |
Disable the given option locally.
Unlike enableLocal, this method cannot fail. The option must be disabled.
Parameters | |
option:bytes , a single character. | the option to be disabled. |
Indicate that the peer has disabled this option.
Parameters | |
option:bytes , a single character. | the option to be disabled. |
Enable the given option locally.
This should enable the given option on this side of the telnet connection and return True. If False is returned, the option will be treated as still disabled and the peer will be notified.
Parameters | |
option:bytes , a single character. | the option to be enabled. |
Indicate whether the peer should be allowed to enable this option.
Returns True if the peer should be allowed to enable this option, False otherwise.
Parameters | |
option:bytes , a single character. | the option to be enabled. |
A subnegotiation command was received but not understood.
Parameters | |
command:str , a single character. | the command being subnegotiated. That is, the first byte after the SB command. |
data:bytes , each a single character | all other bytes of the subneogation. That is, all but the first bytes between SB and SE, with IAC un-escaping applied. |