mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-24 10:35:12 +00:00
Doxygen for new config options
This commit is contained in:
parent
5b52b27519
commit
ac57e82c7d
|
@ -1664,6 +1664,8 @@
|
||||||
* tickets, including authenticated encryption and key management. Example
|
* tickets, including authenticated encryption and key management. Example
|
||||||
* callbacks are provided by MBEDTLS_SSL_TICKET_C.
|
* callbacks are provided by MBEDTLS_SSL_TICKET_C.
|
||||||
*
|
*
|
||||||
|
* Requires: MBEDTLS_SSL_SESSION_RESUMPTION
|
||||||
|
*
|
||||||
* Comment this macro to disable support for SSL session tickets
|
* Comment this macro to disable support for SSL session tickets
|
||||||
*/
|
*/
|
||||||
#define MBEDTLS_SSL_SESSION_TICKETS
|
#define MBEDTLS_SSL_SESSION_TICKETS
|
||||||
|
@ -1671,6 +1673,9 @@
|
||||||
/**
|
/**
|
||||||
* \def MBEDTLS_SSL_SESSION_CACHE
|
* \def MBEDTLS_SSL_SESSION_CACHE
|
||||||
*
|
*
|
||||||
|
* Enable support for cache based session resumption.
|
||||||
|
*
|
||||||
|
* Requires: MBEDTLS_SSL_SESSION_RESUMPTION
|
||||||
*
|
*
|
||||||
* Comment this macro to disable support for SSL session cache
|
* Comment this macro to disable support for SSL session cache
|
||||||
*/
|
*/
|
||||||
|
@ -1679,6 +1684,10 @@
|
||||||
/**
|
/**
|
||||||
* \def MBEDTLS_SSL_SESSION_RESUMPTION
|
* \def MBEDTLS_SSL_SESSION_RESUMPTION
|
||||||
*
|
*
|
||||||
|
* Enable support for session resumption. This is the main feature flag and
|
||||||
|
* enabling this allow to enable following flags:
|
||||||
|
* MBEDTLS_SSL_SESSION_TICKETS
|
||||||
|
* MBEDTLS_SSL_SESSION_CACHE
|
||||||
*
|
*
|
||||||
* Comment this macro to disable support for SSL session resumption
|
* Comment this macro to disable support for SSL session resumption
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue