lwip_includes.h
Go to the documentation of this file.
1 /*
2  * lwip_includes.h
3  *
4  * Created on: 23 ����. 2015 �.
5  * Author: Anakonda
6  */
7 
8 #pragma once
9 
10 #ifdef ARCH_ESP8266
11 
12 // ESP SDK config
13 #define LWIP_OPEN_SRC
14 
15 #ifdef ENABLE_ESPCONN
16 #include <espconn.h>
17 #endif
18 
19 #endif
20 
21 #ifdef ARCH_ESP32
22 #include <sdkconfig.h>
23 #endif
24 
25 #include <lwipopts.h>
26 #include <lwip/init.h>
27 #include <lwip/debug.h>
28 #include <lwip/stats.h>
29 #include <lwip/ip_addr.h>
30 #include <lwip/tcp.h>
31 #include <lwip/udp.h>
32 #include <lwip/dns.h>