Closed joeftiger closed 1 year ago
Hi @joeftiger
Thanks for contacting wolfSSL Support. You'll need to include the configuration header before any other wolfSSL includes:
#ifndef WOLFSSL_USER_SETTINGS
#include <wolfssl/options.h>
#endif
#include <wolfssl/wolfcrypt/settings.h>
#include <wolfssl/ssl.h>
Let us know if that resolves the issue.
Thanks, @embhorn - wolfSSL Support
Thank you very muchb @embhorn, that fixed it.
Maybe this can be included in the docs online?
The docs for wolftlsv1_3_server_method()
here don't mention it, e.g.
Hi @joeftiger
Excellent! If you haven't already, I recommend checking out our examples repository: https://github.com/wolfSSL/wolfssl-examples
I'll go ahead and mark this issue as resolved.
Cheers, Eric
Version
5.6.0 (979707380c677dfa65e3ba48f19e149773a4a32d)
Description
I am trying to use TLS 1.3 for my small playground server. CLion (IDE) keeps reporting
Use of undeclared identifier 'wolfTLSv1_3_client_method'
and trying to compile and run the server results in aSIGSEGV
crash immediately.I've tried compiling wolfSSL with both
make
:and
cmake
:but TLS 1.3 is just not available for me to use. Is there something else I must do to enable it? I went through lots of official docs now, but am unable to fix it.