diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-03 10:39:33 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-03 10:39:33 +0000 |
commit | 16ea5aa7a2e5f326f8ff129e740a19bb3fb7829f (patch) | |
tree | af3d7d3ccecbfb64d7cadbf1d731c7cfb5817e13 /Projects/Webserver/makefile | |
parent | 77e86e7d82c65b1c2a75f965cb936b8f7ad97ac2 (diff) | |
download | lufa-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/makefile')
-rw-r--r-- | Projects/Webserver/makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Projects/Webserver/makefile b/Projects/Webserver/makefile index 37aecc76f..949283383 100644 --- a/Projects/Webserver/makefile +++ b/Projects/Webserver/makefile @@ -128,10 +128,11 @@ SRC = $(TARGET).c \ USBDeviceMode.c \
USBHostMode.c \
Lib/SCSI.c \
+ Lib/DataflashManager.c \
Lib/uIPManagement.c \
- Lib/DHCPApp.c \
+ Lib/DHCPClientApp.c \
Lib/HTTPServerApp.c \
- Lib/DataflashManager.c \
+ Lib/TELNETServerApp.c \
Lib/uip/uip.c \
Lib/uip/uip_arp.c \
Lib/uip/timer.c \
@@ -200,10 +201,10 @@ CDEFS = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD) $(LUFA CDEFS += -DENABLE_DHCP=1
CDEFS += -DUIP_CONF_UDP_CONNS=1 -DUIP_CONF_TCP=1 -DUIP_CONF_MAX_CONNECTIONS=5
-CDEFS += -DUIP_CONF_MAX_LISTENPORTS=1 -DUIP_CONF_BUFFER_SIZE=1514
+CDEFS += -DUIP_CONF_MAX_LISTENPORTS=5 -DUIP_CONF_BUFFER_SIZE=1514
CDEFS += -DUIP_CONF_LL_802154=0 -DUIP_CONF_LL_80211=0 -DUIP_CONF_ROUTER=0 -DUIP_CONF_ICMP6=0 -DUIP_CONF_LL_802154=0
CDEFS += -DUIP_ARCH_ADD32=0 -DUIP_ARCH_CHKSUM=0 -DUIP_CONF_ICMP_DEST_UNREACH=1 -DUIP_NEIGHBOR_CONF_ADDRTYPE=0
-CDEFS += -DUIP_CONF_UDP=ENABLE_DHCP
+CDEFS += -DUIP_URGDATA=0 -DUIP_CONF_UDP=ENABLE_DHCP
# Place -D or -U options here for ASM sources
|