Code:
struct espconn {
enum espconn_type type; /**< type of the espconn (TCP or UDP) */
enum espconn_state state; /**< current state of the espconn */
union {
esp_tcp *tcp;
esp_udp *udp;
} proto;
espconn_recv_callback recv_callback; /**< data received callback */
espconn_sent_callback sent_callback; /**< data sent callback */
uint8 link_cnt; /**< link count */
void *reserve; /**< reserved for user data */
};
Statistics: Posted by ESP_Faye — Fri Oct 30, 2015 11:05 am
Statistics: Posted by kolban — Thu Jul 09, 2015 11:51 am
Statistics: Posted by zaxl — Thu Jul 09, 2015 7:07 am
Statistics: Posted by ESP_Faye — Tue Jul 07, 2015 4:18 pm
Statistics: Posted by kolban — Tue Jul 07, 2015 11:04 am