Name fix on uip_all_zeroes_addr

This commit is contained in:
adamdunkels 2008-02-07 01:35:00 +00:00
parent d407fe2e9f
commit 2187212703
2 changed files with 9 additions and 13 deletions

View file

@ -46,7 +46,7 @@
*
* This file is part of the uIP TCP/IP stack.
*
* $Id: uip.h,v 1.14 2008/01/24 23:08:58 adamdunkels Exp $
* $Id: uip.h,v 1.15 2008/02/07 01:35:00 adamdunkels Exp $
*
*/
@ -62,14 +62,13 @@
typedef union uip_ip4addr_t {
u8_t u8[4]; /* Initializer, must come first!!! */
u16_t u16[2];
#if 0
u32_t u32;
#endif
u32_t u32[1];
} uip_ip4addr_t;
typedef union uip_ip6addr_t {
u8_t u8[16]; /* Initializer, must come first!!! */
u16_t u16[8];
u32_t u32[4];
} uip_ip6addr_t;
#if UIP_CONF_IPV6
@ -1584,7 +1583,7 @@ CCIF extern const uip_ipaddr_t uip_hostaddr, uip_netmask, uip_draddr;
CCIF extern uip_ipaddr_t uip_hostaddr, uip_netmask, uip_draddr;
#endif /* UIP_FIXEDADDR */
CCIF extern const uip_ipaddr_t uip_broadcast_addr;
CCIF extern const uip_ipaddr_t all_zeroes_addr;
CCIF extern const uip_ipaddr_t uip_all_zeroes_addr;
/**