1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

revert some changes and fix wl_definitions

This commit is contained in:
Me No Dev
2015-12-22 12:51:28 +02:00
parent c1711aa73d
commit 7e8e535d3f
3 changed files with 19 additions and 11 deletions

View File

@ -68,4 +68,22 @@ enum wl_enc_type { /* Values map to 802.11 encryption suites... */
ENC_TYPE_AUTO = 8
};
#ifndef __LWIP_TCP_H__
#ifndef LWIP_INTERNAL
enum wl_tcp_state {
CLOSED = 0,
LISTEN = 1,
SYN_SENT = 2,
SYN_RCVD = 3,
ESTABLISHED = 4,
FIN_WAIT_1 = 5,
FIN_WAIT_2 = 6,
CLOSE_WAIT = 7,
CLOSING = 8,
LAST_ACK = 9,
TIME_WAIT = 10
};
#endif
#endif
#endif /* WL_DEFINITIONS_H_ */