mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-24 10:35:12 +00:00
Add comments on some renego flags
This commit is contained in:
parent
69849f8595
commit
3b2c0d6162
|
@ -979,6 +979,7 @@ struct _ssl_context
|
||||||
unsigned char renego_period[8]; /*!< value of the record counters
|
unsigned char renego_period[8]; /*!< value of the record counters
|
||||||
that triggers renegotiation */
|
that triggers renegotiation */
|
||||||
#endif
|
#endif
|
||||||
|
/* needed for option break handshake with insecure peers */
|
||||||
int allow_legacy_renegotiation; /*!< allow legacy renegotiation */
|
int allow_legacy_renegotiation; /*!< allow legacy renegotiation */
|
||||||
const int *ciphersuite_list[4]; /*!< allowed ciphersuites / version */
|
const int *ciphersuite_list[4]; /*!< allowed ciphersuites / version */
|
||||||
#if defined(POLARSSL_SSL_SET_CURVES)
|
#if defined(POLARSSL_SSL_SET_CURVES)
|
||||||
|
@ -1039,6 +1040,7 @@ struct _ssl_context
|
||||||
/*
|
/*
|
||||||
* Secure renegotiation
|
* Secure renegotiation
|
||||||
*/
|
*/
|
||||||
|
/* needed to know when to send extension on server */
|
||||||
int secure_renegotiation; /*!< does peer support legacy or
|
int secure_renegotiation; /*!< does peer support legacy or
|
||||||
secure renegotiation */
|
secure renegotiation */
|
||||||
#if defined(POLARSSL_SSL_RENEGOTIATION)
|
#if defined(POLARSSL_SSL_RENEGOTIATION)
|
||||||
|
|
Loading…
Reference in a new issue