Searched refs:next_protocol (Results 1 – 7 of 7) sorted by relevance
/external/tcpdump/ |
D | print-nsh.c | 56 uint8_t next_protocol; in nsh_print() local 78 next_protocol = *bp; in nsh_print() 95 ND_PRINT((ndo, "next-protocol 0x%x, ", next_protocol)); in nsh_print() 165 switch (next_protocol) { in nsh_print()
|
D | print-vxlan-gpe.c | 64 uint8_t next_protocol; in vxlan_gpe_print() local 75 next_protocol = *bp; in vxlan_gpe_print() 87 switch (next_protocol) { in vxlan_gpe_print()
|
/external/curl/lib/vtls/ |
D | mbedtls.c | 543 const char *next_protocol; in mbed_connect_step2() local 667 next_protocol = mbedtls_ssl_get_alpn_protocol(&BACKEND->ssl); in mbed_connect_step2() 669 if(next_protocol) { in mbed_connect_step2() 670 infof(data, "ALPN, server accepted to use %s\n", next_protocol); in mbed_connect_step2() 672 if(!strncmp(next_protocol, NGHTTP2_PROTO_VERSION_ID, in mbed_connect_step2() 674 !next_protocol[NGHTTP2_PROTO_VERSION_ID_LEN]) { in mbed_connect_step2() 679 if(!strncmp(next_protocol, ALPN_HTTP_1_1, ALPN_HTTP_1_1_LENGTH) && in mbed_connect_step2() 680 !next_protocol[ALPN_HTTP_1_1_LENGTH]) { in mbed_connect_step2()
|
D | polarssl.c | 578 const char *next_protocol = ssl_get_alpn_protocol(&BACKEND->ssl); in polarssl_connect_step2() local 580 if(next_protocol != NULL) { in polarssl_connect_step2() 581 infof(data, "ALPN, server accepted to use %s\n", next_protocol); in polarssl_connect_step2() 584 if(!strncmp(next_protocol, NGHTTP2_PROTO_VERSION_ID, in polarssl_connect_step2() 590 if(!strncmp(next_protocol, ALPN_HTTP_1_1, ALPN_HTTP_1_1_LENGTH)) { in polarssl_connect_step2()
|
/external/ukey2/ |
D | README.md | 150 optional string next_protocol = 4; 155 …next_protocol` field that specifies that the client wants to use to speak to the server. Note tha… 170 1. Checks that `next_protocol` contains a protocol that the server supports. Send an `Alert.BAD_N… 319 `P256_SHA512` cipher and the `next_protocol` was set to "`AES_256_CBC-HMAC_SHA256"`, the total
|
/external/ukey2/src/main/proto/ |
D | ukey.proto | 88 optional string next_protocol = 4; field
|
/external/boringssl/src/ssl/ |
D | handshake_server.cc | 1471 CBS next_protocol = msg.body, selected_protocol, padding; in do_read_next_proto() local 1472 if (!CBS_get_u8_length_prefixed(&next_protocol, &selected_protocol) || in do_read_next_proto() 1473 !CBS_get_u8_length_prefixed(&next_protocol, &padding) || in do_read_next_proto() 1474 CBS_len(&next_protocol) != 0) { in do_read_next_proto()
|