diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-02 12:51:05 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-02 12:51:05 +0000 |
commit | 84e1241f8063dab6b82a580584fa11893a162b55 (patch) | |
tree | 22c4f596fcfc35d689d3a5665f1602db9fc66261 /Projects/Webserver/Lib/uip/uip_arp.h | |
parent | 1008260985a50df686bb6c0b73c6a0b10fd24b2b (diff) | |
download | lufa-84e1241f8063dab6b82a580584fa11893a162b55.tar.gz lufa-84e1241f8063dab6b82a580584fa11893a162b55.tar.bz2 lufa-84e1241f8063dab6b82a580584fa11893a162b55.zip |
Replace the Webserver demo's uIP with the latest code ripped from the Contiki project by Adam Dunkels.
Diffstat (limited to 'Projects/Webserver/Lib/uip/uip_arp.h')
-rw-r--r-- | Projects/Webserver/Lib/uip/uip_arp.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Projects/Webserver/Lib/uip/uip_arp.h b/Projects/Webserver/Lib/uip/uip_arp.h index e32594da2..114d4310c 100644 --- a/Projects/Webserver/Lib/uip/uip_arp.h +++ b/Projects/Webserver/Lib/uip/uip_arp.h @@ -45,7 +45,7 @@ * * This file is part of the uIP TCP/IP stack. * - * $Id: uip_arp.h,v 1.5 2006/06/11 21:46:39 adam Exp $ + * $Id: uip_arp.h,v 1.2 2006/08/26 23:58:45 oliverschmidt Exp $ * */ @@ -66,9 +66,9 @@ struct uip_eth_hdr { u16_t type; }; -#define UIP_ETHTYPE_ARP 0x0806 -#define UIP_ETHTYPE_IP 0x0800 -#define UIP_ETHTYPE_IP6 0x86dd +#define UIP_ETHTYPE_ARP 0x0806 +#define UIP_ETHTYPE_IP 0x0800 +#define UIP_ETHTYPE_IPV6 0x86dd /* The uip_arp_init() function must be called before any of the other @@ -139,6 +139,7 @@ void uip_arp_timer(void); uip_ethaddr.addr[5] = eaddr.addr[5];} while(0) /** @} */ -/** @} */ + #endif /* __UIP_ARP_H__ */ +/** @} */ |