mbed-os/libraries/net/lwip/lwip/core/ipv4
Adam Green 1cf5243206 Don't call ip_addr_isany() on objects which can't be NULL.
GCC will issue a warning when the ip_addr_isany() macro is used on
a pointer which can never be NULL since the macros NULL check will
always be false:
    #define ip_addr_isany(addr1) ((addr1) == NULL || \
                                  (addr1)->addr == IPADDR_ANY)

In these cases, it is probably clearer to just perform the
x.addr == IPADDR_ANY check inline.
2013-08-14 20:17:54 -07:00
..
autoip.c Initial commit of the mbed libraries and tools 2013-02-18 15:32:11 +00:00
icmp.c Initial commit of the mbed libraries and tools 2013-02-18 15:32:11 +00:00
igmp.c Add multicast and broadcast support 2013-03-01 17:02:35 +00:00
inet.c Initial commit of the mbed libraries and tools 2013-02-18 15:32:11 +00:00
inet_chksum.c Initial commit of the mbed libraries and tools 2013-02-18 15:32:11 +00:00
ip.c Don't call ip_addr_isany() on objects which can't be NULL. 2013-08-14 20:17:54 -07:00
ip_addr.c Initial commit of the mbed libraries and tools 2013-02-18 15:32:11 +00:00
ip_frag.c Initial commit of the mbed libraries and tools 2013-02-18 15:32:11 +00:00