IP_ADDR_ANY is now a pointer to { 0UL } (see IP_ADDR_BROADCAST).

This commit is contained in:
likewise 2003-04-01 14:49:37 +00:00
parent 1a72feb128
commit a22e66f5ee

View File

@ -33,7 +33,8 @@
#include "lwip/ip_addr.h"
#include "lwip/inet.h"
struct ip_addr ip_addr_broadcast = {0xffffffff};
struct ip_addr ip_addr_any = { 0x00000000UL };
struct ip_addr ip_addr_broadcast = { 0xffffffffUL };
/*-----------------------------------------------------------------------------------*/