File tree Expand file tree Collapse file tree 3 files changed +0
-28
lines changed
components/mdns/test_afl_fuzz_host Expand file tree Collapse file tree 3 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ CFLAGS=-g -Wno-unused-value -Wno-missing-declarations -Wno-pointer-bool-conversi
33
33
-I$(COMPONENTS_DIR ) /soc/include \
34
34
-I$(COMPONENTS_DIR ) /soc/esp32/include \
35
35
-I$(COMPONENTS_DIR ) /soc/src/esp32/include \
36
- -I$(COMPONENTS_DIR ) /tcpip_adapter/include \
37
36
-I$(COMPONENTS_DIR ) /xtensa/include \
38
37
-I$(COMPONENTS_DIR ) /xtensa/esp32/include \
39
38
-I$(COMPILER_ICLUDE_DIR ) /include
Original file line number Diff line number Diff line change 11
11
#define INC_FREERTOS_H
12
12
#define QUEUE_H
13
13
#define SEMAPHORE_H
14
- #define _TCPIP_ADAPTER_H_
15
14
#define _ESP_TASK_H_
16
15
17
16
#ifdef USE_BSD_STRING
@@ -92,14 +91,6 @@ extern const char * WIFI_EVENT;
92
91
extern const char * IP_EVENT ;
93
92
extern const char * ETH_EVENT ;
94
93
95
- /* status of DHCP client or DHCP server */
96
- typedef enum {
97
- TCPIP_ADAPTER_DHCP_INIT = 0 , /**< DHCP client/server in initial state */
98
- TCPIP_ADAPTER_DHCP_STARTED , /**< DHCP client/server already been started */
99
- TCPIP_ADAPTER_DHCP_STOPPED , /**< DHCP client/server already been stopped */
100
- TCPIP_ADAPTER_DHCP_STATUS_MAX
101
- } tcpip_adapter_dhcp_status_t ;
102
-
103
94
struct udp_pcb {
104
95
uint8_t dummy ;
105
96
};
@@ -114,23 +105,6 @@ struct ip6_addr {
114
105
};
115
106
typedef struct ip6_addr ip6_addr_t ;
116
107
117
- typedef struct {
118
- ip4_addr_t ip ;
119
- ip4_addr_t netmask ;
120
- ip4_addr_t gw ;
121
- } tcpip_adapter_ip_info_t ;
122
-
123
- typedef enum {
124
- TCPIP_ADAPTER_IF_STA = 0 , /**< ESP32 station interface */
125
- TCPIP_ADAPTER_IF_AP , /**< ESP32 soft-AP interface */
126
- TCPIP_ADAPTER_IF_ETH , /**< ESP32 ethernet interface */
127
- TCPIP_ADAPTER_IF_MAX
128
- } tcpip_adapter_if_t ;
129
-
130
- typedef struct {
131
- ip6_addr_t ip ;
132
- } tcpip_adapter_ip6_info_t ;
133
-
134
108
typedef void * system_event_t ;
135
109
136
110
struct pbuf {
Original file line number Diff line number Diff line change 123
123
#define CONFIG_HTTPD_PURGE_BUF_LEN 32
124
124
#define CONFIG_ESP_NETIF_IP_LOST_TIMER_INTERVAL 120
125
125
#define CONFIG_ESP_NETIF_TCPIP_LWIP 1
126
- #define CONFIG_ESP_NETIF_TCPIP_ADAPTER_COMPATIBLE_LAYER 1
127
126
#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1
128
127
#define CONFIG_ESP_TIMER_TASK_STACK_SIZE 3584
129
128
#define CONFIG_ESP_TIMER_IMPL_TG0_LAC 1
You can’t perform that action at this time.
0 commit comments