You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first compiler error is trivial to fix, just add a missing const to a function argument.
ssl_tls.c:3181:50: error: passing argument 2 of ‘ssl_tls13_session_load’ discards ‘const’ qualifier from pointer target type
However, after fixing this you will get many other errors. I'm trying to configure the library for TLS 1.2 and 1.3 support without session ticket support (reduce attack surface).
The text was updated successfully, but these errors were encountered:
Compile fails on
development
branch (gcc 11.2.0 on Ubuntu 22.04) if you make these two changes to mbedtls_config.h:Uncomment:
#define MBEDTLS_SSL_PROTO_TLS1_3
Comment-out:
//#define MBEDTLS_SSL_SESSION_TICKETS
The first compiler error is trivial to fix, just add a missing const to a function argument.
ssl_tls.c:3181:50: error: passing argument 2 of ‘ssl_tls13_session_load’ discards ‘const’ qualifier from pointer target type
However, after fixing this you will get many other errors. I'm trying to configure the library for TLS 1.2 and 1.3 support without session ticket support (reduce attack surface).
The text was updated successfully, but these errors were encountered: