Changeset 2a180307 in mainline for uspace/srv/hid/remcons/telnet.h


Ignore:
Timestamp:
2012-01-12T09:45:21Z (12 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c17c4e28
Parents:
99c2e9f3
Message:

remcons: ignore telnet commands

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/remcons/telnet.h

    r99c2e9f3 r2a180307  
    4545
    4646#define TELNET_IAC 255
     47
    4748#define TELNET_WILL 251
    4849#define TELNET_WONT 252
     50#define TELNET_DO 253
     51#define TELNET_DONT 254
     52
     53#define TELNET_IS_OPTION_CODE(code) (((code) >= 251) && ((code) <= 254))
     54
    4955#define TELNET_ECHO 1
    5056#define TELNET_SUPPRESS_GO_AHEAD 3
Note: See TracChangeset for help on using the changeset viewer.