diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-12 07:27:26 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-12 07:27:26 +0000 |
commit | 8154331da60ac08b0e2b09ca67008ec4a8c7698b (patch) | |
tree | 4eb3824afd288039b995f6f607bed6f0129d74ab /Projects/Webserver/makefile | |
parent | 41ef05a6e559a10134967e8a899aab78c556b645 (diff) | |
download | lufa-8154331da60ac08b0e2b09ca67008ec4a8c7698b.tar.gz lufa-8154331da60ac08b0e2b09ca67008ec4a8c7698b.tar.bz2 lufa-8154331da60ac08b0e2b09ca67008ec4a8c7698b.zip |
Move DHCP negotiation timer into the DHCP connection application state structure, so that each connection gets its own timeout counter (only one connection currently used, but this way is more correct). Add const correctness to static data in the TELNETServerApp.c and HTTPServerApp.c files.
Diffstat (limited to 'Projects/Webserver/makefile')
-rw-r--r-- | Projects/Webserver/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/Webserver/makefile b/Projects/Webserver/makefile index b0e26f3a4..d5eda4c44 100644 --- a/Projects/Webserver/makefile +++ b/Projects/Webserver/makefile @@ -199,9 +199,9 @@ CSTANDARD = -std=gnu99 # Place -D or -U options here for C sources
CDEFS = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD) $(LUFA_OPTS)
-CDEFS += -DENABLE_DHCP_CLIENT=1
+CDEFS += -DENABLE_DHCP_CLIENT
-CDEFS += -DUIP_CONF_UDP=ENABLE_DHCP_CLIENT -DUIP_CONF_TCP=1 -DUIP_CONF_UDP_CONNS=1 -DUIP_CONF_MAX_CONNECTIONS=5
+CDEFS += -DUIP_CONF_UDP="defined(ENABLE_DHCP_CLIENT)" -DUIP_CONF_TCP=1 -DUIP_CONF_UDP_CONNS=1 -DUIP_CONF_MAX_CONNECTIONS=5
CDEFS += -DUIP_CONF_MAX_LISTENPORTS=5 -DUIP_URGDATA=0 -DUIP_CONF_BUFFER_SIZE=1514 -DUIP_ARCH_CHKSUM=0
CDEFS += -DUIP_CONF_LL_802154=0 -DUIP_CONF_LL_80211=0 -DUIP_CONF_ROUTER=0 -DUIP_CONF_ICMP6=0
CDEFS += -DUIP_ARCH_ADD32=0 -DUIP_CONF_ICMP_DEST_UNREACH=1 -DUIP_NEIGHBOR_CONF_ADDRTYPE=0
|