Update comments for new flags in settings.h

This commit is contained in:
Colton Willey
2024-09-26 13:18:06 -07:00
parent 1a4b821c64
commit 6414cf61a7

View File

@@ -3576,11 +3576,17 @@ extern void uITRON4_free(void *p) ;
#define KEEP_PEER_CERT
#endif
/* Always copy certificate(s) from SSL CTX to each SSL object on creation,
* if this is not defined then each SSL object shares a pointer to the
* original certificate buffer owned by the SSL CTX. */
#if defined(OPENSSL_ALL) && !defined(WOLFSSL_NO_COPY_CERT)
#undef WOLFSSL_COPY_CERT
#define WOLFSSL_COPY_CERT
#endif
/* Always copy private key from SSL CTX to each SSL object on creation,
* if this is not defined then each SSL object shares a pointer to the
* original key buffer owned by the SSL CTX. */
#if defined(OPENSSL_ALL) && !defined(WOLFSSL_NO_COPY_KEY)
#undef WOLFSSL_COPY_KEY
#define WOLFSSL_COPY_KEY