dmarc1234
dmarc1234
Unfortunately not and the example provided does not include it either. Digging a little deeper it looks like the ESP8266 version, ESPAsyncTCP, does include beginSecure() but the ESP32 version, AsyncTCP,...
So I think I am getting a little closer, the branch https://github.com/Bmooij/AsyncTCP/tree/mbed-tls does include the function beginSecure() within AsyncTCP.cpp and there are two other files tcp_mbedtls.c and tcp_mbedtls.h that are...
That library, as discussed above does not work, it does not have beginSecure() declared and therefore does nothing.
Getting closer, can now get https://github.com/Bmooij/AsyncTCP/tree/mbed-tls to compile when added the standard ESPAsyncWebServer and have the HTTPs server starting: ``` T network_event- Loading the server cert T network_event- Loading the...
I have managed to overcome the above issue by reducing the size of the buffer used to write to the HTTPS response through res->write(). However, there is still something not...