mirror of
https://github.com/curl/curl.git
synced 2026-04-20 03:21:14 +03:00
mbedtls: Support server renegotiation request
Tested with servers: IIS 7.5; OpenSSL 1.0.2. Closes https://github.com/curl/curl/pull/1475
This commit is contained in:
parent
77b90997dd
commit
bc3866e3eb
1 changed files with 5 additions and 0 deletions
|
|
@ -424,6 +424,11 @@ mbed_connect_step1(struct connectdata *conn,
|
|||
mbedtls_ssl_conf_ciphersuites(&connssl->config,
|
||||
mbedtls_ssl_list_ciphersuites());
|
||||
|
||||
#if defined(MBEDTLS_SSL_RENEGOTIATION)
|
||||
mbedtls_ssl_conf_renegotiation(&connssl->config,
|
||||
MBEDTLS_SSL_RENEGOTIATION_ENABLED);
|
||||
#endif
|
||||
|
||||
#if defined(MBEDTLS_SSL_SESSION_TICKETS)
|
||||
mbedtls_ssl_conf_session_tickets(&connssl->config,
|
||||
MBEDTLS_SSL_SESSION_TICKETS_DISABLED);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue