TCPIP_TELNET_FLAGS Enumeration
C
typedef enum {
TCPIP_TELNET_FLAG_NONE = 0x0000,
TCPIP_TELNET_FLAG_NO_DELAY = 0x0001,
TCPIP_TELNET_FLAG_PASS_CONTROL_CHARS = 0x0002
} TCPIP_TELNET_FLAGS;
Description
Enumeration: TCPIP_TELNET_FLAGS.
Flags for the configuration of the telnet module.
Members
Members | Description |
---|---|
TCPIP_TELNET_FLAG_NONE = 0x0000 | No flag set. |
TCPIP_TELNET_FLAG_NO_DELAY = 0x0001 | Create the telnet sockets with NO_DELAY option. |
TCPIP_TELNET_FLAG_PASS_CONTROL_CHARS = 0x0002 | Pass the telnet commands, options, controls, etc. within the messages to the console by default they are removed and only printable characters are sent to the console Enable only for debug or special purposes. |
Remarks
Only 16 bits are supported.