mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-07 16:23:38 +03:00
remove redeclaration
This commit is contained in:
parent
f8895d1a61
commit
a561710677
@ -10,17 +10,11 @@ struct ip_addr {
|
|||||||
typedef struct ip_addr ip_addr_t;
|
typedef struct ip_addr ip_addr_t;
|
||||||
|
|
||||||
struct ip_info {
|
struct ip_info {
|
||||||
struct ip_addr ip;
|
ip_addr_t ip;
|
||||||
struct ip_addr netmask;
|
ip_addr_t netmask;
|
||||||
struct ip_addr gw;
|
ip_addr_t gw;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define IP4_ADDR(ipaddr, a,b,c,d) \
|
|
||||||
(ipaddr)->addr = ((uint32)((d) & 0xff) << 24) | \
|
|
||||||
((uint32)((c) & 0xff) << 16) | \
|
|
||||||
((uint32)((b) & 0xff) << 8) | \
|
|
||||||
(uint32)((a) & 0xff)
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determine if two address are on the same network.
|
* Determine if two address are on the same network.
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user