aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/Lib/uIPManagement.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-02-03 10:39:33 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-02-03 10:39:33 +0000
commit16ea5aa7a2e5f326f8ff129e740a19bb3fb7829f (patch)
treeaf3d7d3ccecbfb64d7cadbf1d731c7cfb5817e13 /Projects/Webserver/Lib/uIPManagement.h
parent77e86e7d82c65b1c2a75f965cb936b8f7ad97ac2 (diff)
downloadlufa-16ea5aa7a2e5f326f8ff129e740a19bb3fb7829f.tar.gz
lufa-16ea5aa7a2e5f326f8ff129e740a19bb3fb7829f.tar.bz2
lufa-16ea5aa7a2e5f326f8ff129e740a19bb3fb7829f.zip
Add a TELNET server to the webserver project, which currently can list active TCP connections.
Diffstat (limited to 'Projects/Webserver/Lib/uIPManagement.h')
-rw-r--r--Projects/Webserver/Lib/uIPManagement.h5
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);