MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | #ifndef LPC_INTERACTIVE_INFO_H_ |
| 2 | #define LPC_INTERACTIVE_INFO_H_ |
| 3 | |
| 4 | /* Definition of argument values for interactive_info() |
| 5 | */ |
| 6 | |
| 7 | #include "configuration.h" |
| 8 | |
| 9 | /* Connection information */ |
| 10 | #define II_IP_NAME -1 |
| 11 | #define II_IP_NUMBER -2 |
| 12 | #define II_IP_PORT -3 |
| 13 | #define II_IP_ADDRESS -4 |
| 14 | #define II_MUD_PORT -5 |
| 15 | |
| 16 | /* Telnet related information */ |
| 17 | #define II_MCCP_STATS -10 |
| 18 | |
| 19 | /* Input handling */ |
| 20 | #define II_INPUT_PENDING -20 |
| 21 | #define II_EDITING -21 |
| 22 | #define II_IDLE -22 |
| 23 | |
| 24 | /* Output handling */ |
| 25 | #define II_SNOOP_NEXT -30 |
| 26 | #define II_SNOOP_PREV -31 |
| 27 | #define II_SNOOP_ALL -32 |
| 28 | |
| 29 | #endif /* LPC_INTERACTIVE_INFO_H_ */ |