LwIP v2 support

This commit is contained in:
Our Air Quality 2017-06-06 12:47:21 +10:00 committed by Erwin Boskma
parent a5b352e8c1
commit 36fca51b2b
No known key found for this signature in database
GPG key ID: 1C79B2FD5FD63533
39 changed files with 1357 additions and 664 deletions

View file

@ -44,9 +44,9 @@ enum {
};
struct ip_info {
struct ip_addr ip;
struct ip_addr netmask;
struct ip_addr gw;
struct ip4_addr ip;
struct ip4_addr netmask;
struct ip4_addr gw;
};
bool sdk_wifi_get_ip_info(uint8_t if_index, struct ip_info *info);