Home
last modified time | relevance | path

Searched refs:allow_legacy (Results 1 – 4 of 4) sorted by relevance

/net-tools-3.4.0/mbedtls-2.4.0/programs/ssl/
Dssl_client2.c297 int allow_legacy; /* allow legacy renegotiation */ member
488 opt.allow_legacy = DFL_ALLOW_LEGACY; in main()
596 case -1: opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE; break; in main()
597 case 0: opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION; break; in main()
598 case 1: opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION; break; in main()
1165 if( opt.allow_legacy != DFL_ALLOW_LEGACY ) in main()
1166 mbedtls_ssl_conf_legacy_renegotiation( &conf, opt.allow_legacy ); in main()
Dssl_server2.c377 int allow_legacy; /* allow legacy renegotiation */ member
920 opt.allow_legacy = DFL_ALLOW_LEGACY; in main()
1026 case -1: opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE; break; in main()
1027 case 0: opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION; break; in main()
1028 case 1: opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION; break; in main()
1750 if( opt.allow_legacy != DFL_ALLOW_LEGACY ) in main()
1751 mbedtls_ssl_conf_legacy_renegotiation( &conf, opt.allow_legacy ); in main()
/net-tools-3.4.0/mbedtls-2.4.0/include/mbedtls/
Dssl.h2142 void mbedtls_ssl_conf_legacy_renegotiation( mbedtls_ssl_config *conf, int allow_legacy );
/net-tools-3.4.0/mbedtls-2.4.0/library/
Dssl_tls.c6102 void mbedtls_ssl_conf_legacy_renegotiation( mbedtls_ssl_config *conf, int allow_legacy ) in mbedtls_ssl_conf_legacy_renegotiation() argument
6104 conf->allow_legacy_renegotiation = allow_legacy; in mbedtls_ssl_conf_legacy_renegotiation()