Home
last modified time | relevance | path

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

/mbedtls-3.5.0/programs/ssl/
Dssl_client2.c511 int allow_legacy; /* allow legacy renegotiation */ member
934 opt.allow_legacy = DFL_ALLOW_LEGACY; in main()
1116 opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE; in main()
1119 opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION; in main()
1122 opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION; in main()
1922 if (opt.allow_legacy != DFL_ALLOW_LEGACY) { in main()
1923 mbedtls_ssl_conf_legacy_renegotiation(&conf, opt.allow_legacy); in main()
Dssl_server2.c652 int allow_legacy; /* allow legacy renegotiation */ member
1715 opt.allow_legacy = DFL_ALLOW_LEGACY; in main()
1946 opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE; in main()
1949 opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION; in main()
1952 opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION; in main()
3023 if (opt.allow_legacy != DFL_ALLOW_LEGACY) { in main()
3024 mbedtls_ssl_conf_legacy_renegotiation(&conf, opt.allow_legacy); in main()
/mbedtls-3.5.0/include/mbedtls/
Dssl.h4342 void mbedtls_ssl_conf_legacy_renegotiation(mbedtls_ssl_config *conf, int allow_legacy);
/mbedtls-3.5.0/library/
Dssl_tls.c3169 void mbedtls_ssl_conf_legacy_renegotiation(mbedtls_ssl_config *conf, int allow_legacy) in mbedtls_ssl_conf_legacy_renegotiation() argument
3171 conf->allow_legacy_renegotiation = allow_legacy; in mbedtls_ssl_conf_legacy_renegotiation()