Home
last modified time | relevance | path

Searched refs:npn_protocols (Results 1 – 6 of 6) sorted by relevance

/third_party/openssl/test/
Dssl_test_ctx_test.c41 || !TEST_str_eq(conf1->npn_protocols, conf2->npn_protocols) in clientconf_eq()
54 || !TEST_str_eq(serv->npn_protocols, serv2->npn_protocols) in serverconf_eq()
182 fixture->expected_ctx->extra.client.npn_protocols = in test_good_configuration()
184 if (!TEST_ptr(fixture->expected_ctx->extra.client.npn_protocols)) in test_good_configuration()
/third_party/openssl/test/helpers/
Dhandshake.c66 OPENSSL_free(ctx_data->npn_protocols); in ctx_data_free_data()
67 ctx_data->npn_protocols = NULL; in ctx_data_free_data()
401 ctx_data->npn_protocols, in client_npn_cb()
412 *data = ctx_data->npn_protocols; in server_npn_cb()
585 if (extra->server.npn_protocols != NULL) { in configure_handshake_ctx()
586 if (!TEST_true(parse_protos(extra->server.npn_protocols, in configure_handshake_ctx()
587 &server_ctx_data->npn_protocols, in configure_handshake_ctx()
593 if (extra->server2.npn_protocols != NULL) { in configure_handshake_ctx()
594 if (!TEST_true(parse_protos(extra->server2.npn_protocols, in configure_handshake_ctx()
595 &server2_ctx_data->npn_protocols, in configure_handshake_ctx()
[all …]
Dssl_test_ctx.h105 char *npn_protocols; member
122 char *npn_protocols; member
Dssl_test_ctx.c351 IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_CLIENT_CONF, client, npn_protocols)
352 IMPLEMENT_SSL_TEST_STRING_OPTION(SSL_TEST_SERVER_CONF, server, npn_protocols)
736 OPENSSL_free(conf->client.npn_protocols); in ssl_test_extra_conf_free_data()
737 OPENSSL_free(conf->server.npn_protocols); in ssl_test_extra_conf_free_data()
738 OPENSSL_free(conf->server2.npn_protocols); in ssl_test_extra_conf_free_data()
Dhandshake.h16 unsigned char *npn_protocols; member
/third_party/python/Lib/
Dssl.py532 def set_npn_protocols(self, npn_protocols): argument
539 for protocol in npn_protocols: