Searched refs:proto_len (Results 1 – 2 of 2) sorted by relevance
/openssl/test/helpers/ |
H A D | handshake.c | 1438 unsigned int proto_len = 0; in do_handshake_internal() local 1672 SSL_get0_next_proto_negotiated(client.ssl, &proto, &proto_len); in do_handshake_internal() 1673 ret->client_npn_negotiated = dup_str(proto, proto_len); in do_handshake_internal() 1675 SSL_get0_next_proto_negotiated(server.ssl, &proto, &proto_len); in do_handshake_internal() 1676 ret->server_npn_negotiated = dup_str(proto, proto_len); in do_handshake_internal() 1679 SSL_get0_alpn_selected(client.ssl, &proto, &proto_len); in do_handshake_internal() 1680 ret->client_alpn_negotiated = dup_str(proto, proto_len); in do_handshake_internal() 1682 SSL_get0_alpn_selected(server.ssl, &proto, &proto_len); in do_handshake_internal() 1683 ret->server_alpn_negotiated = dup_str(proto, proto_len); in do_handshake_internal()
|
/openssl/apps/ |
H A D | s_client.c | 3533 unsigned int proto_len; in print_stuff() local 3534 SSL_get0_next_proto_negotiated(s, &proto, &proto_len); in print_stuff() 3536 BIO_write(bio, proto, proto_len); in print_stuff() 3542 unsigned int proto_len; in print_stuff() local 3543 SSL_get0_alpn_selected(s, &proto, &proto_len); in print_stuff() 3544 if (proto_len > 0) { in print_stuff() 3546 BIO_write(bio, proto, proto_len); in print_stuff()
|
Completed in 16 milliseconds