1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #ifndef _TELNETSERVER_APP_H_
- #define _TELNETSERVER_APP_H_
-
- #include <avr/pgmspace.h>
- #include <string.h>
- #include <stdio.h>
- #include <uip.h>
- #include "Config/AppConfig.h"
-
-
- #define TELNET_SERVER_PORT 23
-
-
- enum TELNET_States_t
- {
- TELNET_STATE_SendHeader,
- TELNET_STATE_SendMenu,
- TELNET_STATE_GetCommand,
- TELNET_STATE_SendResponse,
- };
-
- void TELNETServerApp_Init(void);
- void TELNETServerApp_Callback(void);
- #if defined(INCLUDE_FROM_TELNETSERVERAPP_C)
- static void TELNETServerApp_DisplayTCPConnections(void);
- #endif
- #endif
|