Skip to content

Commit

Permalink
no SNI on ESP8266
Browse files Browse the repository at this point in the history
  • Loading branch information
gojimmypi committed Oct 11, 2024
1 parent 33d4b62 commit f027e89
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,12 @@
#endif
#endif
#define HAVE_ALPN
#define HAVE_SNI
#ifndef CONFIG_IDF_TARGET_ESP8266
/* Unless installed in the ESP8266 RTOS SDK locally, the wolfSSL
* API for SNI will not be seen in the components/esp-tls layer.
* Only enable SNI for non-ESP8266 targets by default: */
#define HAVE_SNI
#endif
#define OPENSSL_EXTRA_X509_SMALL

#define HAVE_TLS_EXTENSIONS
Expand Down

0 comments on commit f027e89

Please sign in to comment.