Home
last modified time | relevance | path

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

/mbedtls-latest/programs/ssl/
Dssl_client2.c502 int allow_legacy; /* allow legacy renegotiation */ member
958 opt.allow_legacy = DFL_ALLOW_LEGACY; in main()
1186 opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE; in main()
1189 opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION; in main()
1192 opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION; in main()
1962 if (opt.allow_legacy != DFL_ALLOW_LEGACY) { in main()
1963 mbedtls_ssl_conf_legacy_renegotiation(&conf, opt.allow_legacy); in main()
Dssl_server2.c647 int allow_legacy; /* allow legacy renegotiation */ member
1734 opt.allow_legacy = DFL_ALLOW_LEGACY; in main()
2017 opt.allow_legacy = MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE; in main()
2020 opt.allow_legacy = MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION; in main()
2023 opt.allow_legacy = MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION; in main()
3053 if (opt.allow_legacy != DFL_ALLOW_LEGACY) { in main()
3054 mbedtls_ssl_conf_legacy_renegotiation(&conf, opt.allow_legacy); in main()
/mbedtls-latest/include/mbedtls/
Dssl.h4593 void mbedtls_ssl_conf_legacy_renegotiation(mbedtls_ssl_config *conf, int allow_legacy);
/mbedtls-latest/library/
Dssl_tls.c2964 void mbedtls_ssl_conf_legacy_renegotiation(mbedtls_ssl_config *conf, int allow_legacy) in mbedtls_ssl_conf_legacy_renegotiation() argument
2966 conf->allow_legacy_renegotiation = allow_legacy; in mbedtls_ssl_conf_legacy_renegotiation()