Add uIP-split code to the Webserver project, so that each packet is split in half to avoid the delayed-ACK problem when communicating with other devices. Condense HTTP server code, so that the HTTP headers are all sent from the one state. Make default filename append to any directory URI, rather than just the root directory.

This commit is contained in:
Dean Camera 2010-02-18 02:19:43 +00:00
parent c77b30e9e6
commit 3b6987bca3
9 changed files with 315 additions and 70 deletions

View file

@ -138,6 +138,7 @@ SRC = $(TARGET).c \
Lib/uip/uip_arp.c \
Lib/uip/timer.c \
Lib/uip/clock.c \
Lib/uip/uip-split.c \
Lib/FATFs/diskio.c \
Lib/FATFs/ff.c \
$(LUFA_PATH)/LUFA/Drivers/USB/LowLevel/DevChapter9.c \