igrr / axtls-8266

axTLS port for ESP8266

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Provide example of using LWIP raw with axTLS

slaff opened this issue · comments

commented

It would be great if you can provide examples how to use axTLS with LWIP raw tcp for ESP8266. Even a small source code example will be fine.

This library is not compatible with asynchronous raw LwIP APIs. It depends on the following blocking network APIs:

#define SOCKET_READ(A,B,C)      ax_port_read(A,B,C)
#define SOCKET_WRITE(A,B,C)     ax_port_write(A,B,C)
#define SOCKET_CLOSE(A)         ax_port_close(A)