mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 18:59:55 +08:00
f438f02b0f
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1125 bbd45198-f89e-11dd-88c7-29a3b14d5316
20 lines
442 B
C
20 lines
442 B
C
|
|
#include "rtdef.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ethernetif APIs */
|
|
#define IP_ADDR_ANY_VALUE 0x00000000UL
|
|
#define IP_ADDR_BROADCAST_VALUE 0xffffffffUL
|
|
|
|
//extern const struct ip_addr ip_addr_any;
|
|
//extern const struct ip_addr ip_addr_broadcast;
|
|
|
|
/** IP_ADDR_ can be used as a fixed IP address
|
|
* for the wildcard and the broadcast address
|
|
*/
|
|
#define IP_ADDR_ANY ((struct ip_addr *)0)
|
|
#define IP_ADDR_BROADCAST ((struct ip_addr *)0) |