1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ... */
#ifndef LWIP_ESP_DHCP_STATE_H
#define LWIP_ESP_DHCP_STATE_H
#include <stdbool.h>
#include "lwip/netif.h"
#ifdef __cplusplus
extern "C" {
#endif
bool dhcp_ip_addr_restore(struct netif *netif);
void dhcp_ip_addr_store(struct netif *netif);
void dhcp_ip_addr_erase(struct netif *netif);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif