Home
last modified time | relevance | path

Searched refs:next_proto (Results 1 – 16 of 16) sorted by relevance

/third_party/nghttp2/src/
Dshrpx_live_check.cc405 const unsigned char *next_proto = nullptr; in tls_handshake() local
409 SSL_get0_next_proto_negotiated(conn_.tls.ssl, &next_proto, &next_proto_len); in tls_handshake()
412 if (next_proto == nullptr) { in tls_handshake()
413 SSL_get0_alpn_selected(conn_.tls.ssl, &next_proto, &next_proto_len); in tls_handshake()
417 auto proto = StringRef{next_proto, next_proto_len}; in tls_handshake()
Dshrpx_connection.cc830 const unsigned char *next_proto = nullptr; in check_http2_requirement() local
834 SSL_get0_next_proto_negotiated(tls.ssl, &next_proto, &next_proto_len); in check_http2_requirement()
837 if (next_proto == nullptr) { in check_http2_requirement()
838 SSL_get0_alpn_selected(tls.ssl, &next_proto, &next_proto_len); in check_http2_requirement()
841 if (next_proto == nullptr || in check_http2_requirement()
842 !util::check_h2_is_selected(StringRef{next_proto, next_proto_len})) { in check_http2_requirement()
DHttpServer.cc900 const unsigned char *next_proto = nullptr; in verify_npn_result() local
904 SSL_get0_next_proto_negotiated(ssl_, &next_proto, &next_proto_len); in verify_npn_result()
907 if (next_proto) { in verify_npn_result()
908 auto proto = StringRef{next_proto, next_proto_len}; in verify_npn_result()
918 SSL_get0_alpn_selected(ssl_, &next_proto, &next_proto_len); in verify_npn_result()
2003 auto next_proto = static_cast<std::vector<unsigned char> *>(arg); in next_proto_cb() local
2004 *data = next_proto->data(); in next_proto_cb()
2005 *len = next_proto->size(); in next_proto_cb()
2122 std::vector<unsigned char> next_proto; in run() local
2244 next_proto = util::get_default_alpn(); in run()
[all …]
Dshrpx_client_handler.cc615 const unsigned char *next_proto = nullptr; in validate_next_proto() local
622 SSL_get0_next_proto_negotiated(conn_.tls.ssl, &next_proto, &next_proto_len); in validate_next_proto()
625 if (next_proto == nullptr) { in validate_next_proto()
626 SSL_get0_alpn_selected(conn_.tls.ssl, &next_proto, &next_proto_len); in validate_next_proto()
632 if (next_proto) { in validate_next_proto()
633 proto = StringRef{next_proto, next_proto_len}; in validate_next_proto()
Dshrpx_http2_session.cc1672 const unsigned char *next_proto = nullptr; in connection_made() local
1676 SSL_get0_next_proto_negotiated(conn_.tls.ssl, &next_proto, &next_proto_len); in connection_made()
1679 if (!next_proto) { in connection_made()
1680 SSL_get0_alpn_selected(conn_.tls.ssl, &next_proto, &next_proto_len); in connection_made()
1684 if (!next_proto) { in connection_made()
1689 auto proto = StringRef{next_proto, next_proto_len}; in connection_made()
Dnghttp.cc1125 const unsigned char *next_proto = nullptr; in connection_made() local
1128 SSL_get0_next_proto_negotiated(ssl, &next_proto, &next_proto_len); in connection_made()
1131 if (next_proto) { in connection_made()
1132 auto proto = StringRef{next_proto, next_proto_len}; in connection_made()
1137 next_proto = nullptr; in connection_made()
1142 SSL_get0_alpn_selected(ssl, &next_proto, &next_proto_len); in connection_made()
1147 if (!next_proto) { in connection_made()
Dh2load.cc1099 const unsigned char *next_proto = nullptr; in connection_made() local
1103 SSL_get0_next_proto_negotiated(ssl, &next_proto, &next_proto_len); in connection_made()
1106 if (next_proto == nullptr) { in connection_made()
1107 SSL_get0_alpn_selected(ssl, &next_proto, &next_proto_len); in connection_made()
1111 if (next_proto) { in connection_made()
1112 auto proto = StringRef{next_proto, next_proto_len}; in connection_made()
/third_party/openssl/apps/
Ds_client.c246 static tlsextnextprotoctx next_proto; variable
1597 next_proto.status = -1; in s_client_main()
1599 next_proto.data = in s_client_main()
1600 next_protos_parse(&next_proto.len, next_proto_neg_in); in s_client_main()
1601 if (next_proto.data == NULL) { in s_client_main()
1606 next_proto.data = NULL; in s_client_main()
1842 if (next_proto.data != NULL) in s_client_main()
1843 SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto); in s_client_main()
3092 OPENSSL_free(next_proto.data); in s_client_main()
3279 if (next_proto.status != -1) { in print_stuff()
[all …]
Ds_server.c636 tlsextnextprotoctx *next_proto = arg; in next_proto_cb() local
638 *data = next_proto->data; in next_proto_cb()
639 *len = next_proto->len; in next_proto_cb()
1020 tlsextnextprotoctx next_proto = { NULL, 0 }; in s_server_main() local
1757 next_proto.data = next_protos_parse(&next_proto.len, next_proto_neg_in); in s_server_main()
1758 if (next_proto.data == NULL) in s_server_main()
2016 if (next_proto.data) in s_server_main()
2018 &next_proto); in s_server_main()
2257 OPENSSL_free(next_proto.data); in s_server_main()
/third_party/node/deps/openssl/openssl/apps/
Ds_client.c246 static tlsextnextprotoctx next_proto; variable
1597 next_proto.status = -1; in s_client_main()
1599 next_proto.data = in s_client_main()
1600 next_protos_parse(&next_proto.len, next_proto_neg_in); in s_client_main()
1601 if (next_proto.data == NULL) { in s_client_main()
1606 next_proto.data = NULL; in s_client_main()
1842 if (next_proto.data != NULL) in s_client_main()
1843 SSL_CTX_set_next_proto_select_cb(ctx, next_proto_cb, &next_proto); in s_client_main()
3092 OPENSSL_free(next_proto.data); in s_client_main()
3279 if (next_proto.status != -1) { in print_stuff()
[all …]
Ds_server.c636 tlsextnextprotoctx *next_proto = arg; in next_proto_cb() local
638 *data = next_proto->data; in next_proto_cb()
639 *len = next_proto->len; in next_proto_cb()
1020 tlsextnextprotoctx next_proto = { NULL, 0 }; in s_server_main() local
1757 next_proto.data = next_protos_parse(&next_proto.len, next_proto_neg_in); in s_server_main()
1758 if (next_proto.data == NULL) in s_server_main()
2016 if (next_proto.data) in s_server_main()
2018 &next_proto); in s_server_main()
2257 OPENSSL_free(next_proto.data); in s_server_main()
/third_party/node/deps/v8/src/ic/
Dkeyed-store-generic.cc675 Label next_proto(this); in LookupPropertyOnPrototypeChain() local
682 &var_entry, &next_proto, bailout); in LookupPropertyOnPrototypeChain()
724 GotoIf(TaggedEqual(value, TheHoleConstant()), &next_proto); in LookupPropertyOnPrototypeChain()
740 BIND(&next_proto); in LookupPropertyOnPrototypeChain()
Daccessor-assembler.cc2819 Label next_proto(this), return_value(this, &var_value), goto_slow(this); in GenericPropertyLoad() local
2822 &next_proto, &goto_slow); in GenericPropertyLoad()
2826 BIND(&next_proto); in GenericPropertyLoad()
/third_party/node/deps/openssl/openssl/ssl/statem/
Dstatem_srvr.c4088 PACKET next_proto, padding; in tls_process_next_proto() local
4098 if (!PACKET_get_length_prefixed_1(pkt, &next_proto) in tls_process_next_proto()
4105 if (!PACKET_memdup(&next_proto, &s->ext.npn, &next_proto_len)) { in tls_process_next_proto()
/third_party/openssl/ssl/statem/
Dstatem_srvr.c4068 PACKET next_proto, padding; in tls_process_next_proto() local
4078 if (!PACKET_get_length_prefixed_1(pkt, &next_proto) in tls_process_next_proto()
4085 if (!PACKET_memdup(&next_proto, &s->ext.npn, &next_proto_len)) { in tls_process_next_proto()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc10164 Label next_proto(this), check_integer_indexed_exotic(this); in TryPrototypeChainLookup() local
10173 &next_proto); in TryPrototypeChainLookup()
10174 GotoIfNot(IsString(var_unique.value()), &next_proto); in TryPrototypeChainLookup()
10176 &next_proto); in TryPrototypeChainLookup()
10179 BIND(&next_proto); in TryPrototypeChainLookup()
10209 Label next_proto(this); in TryPrototypeChainLookup() local
10213 var_index.value(), &next_proto, if_bailout); in TryPrototypeChainLookup()
10214 BIND(&next_proto); in TryPrototypeChainLookup()