esp-idf/components/lwip/port/include/netif/dhcp_state.h

28 wiersze
478 B
C
Czysty Zwykły widok Historia

2022-04-28 20:43:14 +00:00
/*
* SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
2022-03-23 18:20:06 +00:00
#ifndef LWIP_ESP_DHCP_STATE_H
#define LWIP_ESP_DHCP_STATE_H
2022-03-23 18:20:06 +00:00
#include <stdbool.h>
#include "lwip/netif.h"
#ifdef __cplusplus
extern "C" {
#endif
2022-03-23 18:20:06 +00:00
bool dhcp_ip_addr_restore(struct netif *netif);
2022-03-23 18:20:06 +00:00
void dhcp_ip_addr_store(struct netif *netif);
2022-03-23 18:20:06 +00:00
void dhcp_ip_addr_erase(struct netif *netif);
#ifdef __cplusplus
}
#endif
2022-03-23 18:20:06 +00:00
#endif /* LWIP_ESP_DHCP_STATE_H */