1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-27 18:02:17 +03:00

IPv6 on esp8266-nonos-sdk and arduino (#5136)

This commit is contained in:
david gauchard
2018-11-27 23:07:47 +01:00
committed by GitHub
parent a501d3ca3b
commit 5c4db3acf4
59 changed files with 1270 additions and 809 deletions

View File

@ -90,14 +90,14 @@ typedef uint32_t sys_prot_t; // not really used
ip4_addr3_16(ipaddr), \
ip4_addr4_16(ipaddr)
// ip_addr / ip_info: do not exist in lwip2 (only in lwip1.4)
struct ip_addr {
// ipv4_addr / ip_info: do not exist in lwip2 (only in lwip1.4)
struct ipv4_addr {
uint32_t addr;
};
struct ip_info {
struct ip_addr ip;
struct ip_addr netmask;
struct ip_addr gw;
struct ipv4_addr ip;
struct ipv4_addr netmask;
struct ipv4_addr gw;
};
///////////////////////////////