Home
last modified time | relevance | path

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

/third_party/mbedtls/programs/ssl/
Dssl_client2.c478 int allow_legacy; /* allow legacy renegotiation */ member
846 opt.allow_legacy = DFL_ALLOW_LEGACY; in main()
1023 opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE; in main()
1026 opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION; in main()
1029 opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION; in main()
1870 if( opt.allow_legacy != DFL_ALLOW_LEGACY ) in main()
1871 mbedtls_ssl_conf_legacy_renegotiation( &conf, opt.allow_legacy ); in main()
Dssl_server2.c601 int allow_legacy; /* allow legacy renegotiation */ member
1527 opt.allow_legacy = DFL_ALLOW_LEGACY; in main()
1734 opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE; in main()
1737 opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION; in main()
1740 opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION; in main()
2771 if( opt.allow_legacy != DFL_ALLOW_LEGACY ) in main()
2772 mbedtls_ssl_conf_legacy_renegotiation( &conf, opt.allow_legacy ); in main()
/third_party/mbedtls/include/mbedtls/
Dssl.h3749 void mbedtls_ssl_conf_legacy_renegotiation( mbedtls_ssl_config *conf, int allow_legacy );
/third_party/mbedtls/library/
Dssl_tls.c4258 void mbedtls_ssl_conf_legacy_renegotiation( mbedtls_ssl_config *conf, int allow_legacy ) in mbedtls_ssl_conf_legacy_renegotiation() argument
4260 conf->allow_legacy_renegotiation = allow_legacy; in mbedtls_ssl_conf_legacy_renegotiation()