diff options
Diffstat (limited to 'Projects/Webserver/Lib/uIPManagement.h')
-rw-r--r-- | Projects/Webserver/Lib/uIPManagement.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Projects/Webserver/Lib/uIPManagement.h b/Projects/Webserver/Lib/uIPManagement.h index 57a1393fe..1e7ffd0be 100644 --- a/Projects/Webserver/Lib/uIPManagement.h +++ b/Projects/Webserver/Lib/uIPManagement.h @@ -43,8 +43,9 @@ #include <uip_arp.h>
#include <timer.h>
- #include "Lib/DHCPApp.h"
+ #include "Lib/DHCPClientApp.h"
#include "Lib/HTTPServerApp.h"
+ #include "Lib/TELNETServerApp.h"
/* Macros: */
/** IP address that the webserver should use once connected to a RNDIS device (when DHCP is disabled). */
@@ -64,6 +65,8 @@ /* Function Prototypes: */
void uIPManagement_Init(void);
void uIPManagement_ManageNetwork(void);
+ void uIPManagement_TCPCallback(void);
+ void uIPManagement_UDPCallback(void);
#if defined(INCLUDE_FROM_UIPMANAGEMENT_C)
static void uIPManagement_ProcessIncommingPacket(void);
|