feat(esp8266): Change ip_addr/ip_addr_t to ip4_addr/ip4_addr_t

This commit is contained in:
Zhang Jun Hao
2018-05-01 13:26:52 +08:00
parent 8f93ab7629
commit 57880c7a41
3 changed files with 9 additions and 9 deletions

View File

@ -87,8 +87,8 @@ enum dhcp_status {
struct dhcps_lease {
bool enable; /**< enable DHCP lease or not */
struct ip_addr start_ip; /**< start IP of IP range */
struct ip_addr end_ip; /**< end IP of IP range */
struct ip4_addr start_ip; /**< start IP of IP range */
struct ip4_addr end_ip; /**< end IP of IP range */
};
enum dhcps_offer_option {