Select one of the symbols to view example projects that use it.
 
Outline
#define LWIP_ESP_DHCP_STATE_H
#include <stdbool.h>
#include "lwip/netif.h"
dhcp_ip_addr_restore(struct netif *);
dhcp_ip_addr_store(struct netif *);
dhcp_ip_addr_erase(struct netif *);
Files
loading...
SourceVuESP-IDF Framework and ExampleslwIPport/include/netif/dhcp_state.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2018-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #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 /* LWIP_ESP_DHCP_STATE_H */
Details
Show:
from
Types: Columns: