2022-04-28 16:43:14 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2018-08-29 04:22:54 -04:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef _DHCP_STATE_H_
|
|
|
|
#define _DHCP_STATE_H_
|
|
|
|
|
2022-04-28 16:43:14 -04:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2018-08-29 04:22:54 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool dhcp_ip_addr_restore(void *netif);
|
|
|
|
|
|
|
|
void dhcp_ip_addr_store(void *netif);
|
|
|
|
|
2019-06-28 10:47:34 -04:00
|
|
|
void dhcp_ip_addr_erase(void *esp_netif);
|
2018-08-29 04:22:54 -04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-11-10 02:40:01 -05:00
|
|
|
#endif /* _DHCP_STATE_H_ */
|