Add a TELNET server to the webserver project, which currently can list active TCP connections.
This commit is contained in:
parent
77e86e7d82
commit
16ea5aa7a2
14 changed files with 383 additions and 106 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue