/external/libmicrohttpd/src/examples/ |
mhd2spdy_spdy.h | 65 uint16_t *spdy_proto_version);
|
mhd2spdy_spdy.c | 519 uint16_t *spdy_proto_version; local 528 spdy_proto_version = (uint16_t*)arg; 529 *spdy_proto_version = rv; 535 * Setup SSL context. We pass |spdy_proto_version| to get negotiated 540 uint16_t *spdy_proto_version) 548 spdy_proto_version); 754 glob_opt.spdy_proto_version = 0; 756 if(rv <= 0 || (glob_opt.spdy_proto_version != 3 && glob_opt.spdy_proto_version != 2)) 765 glob_opt.spdy_proto_version = 3 [all...] |
mhd2spdy_structures.h | 158 uint16_t spdy_proto_version; member in struct:global_options
|
mhd2spdy.c | 112 spdy_ssl_init_ssl_ctx(glob_opt.ssl_ctx, &glob_opt.spdy_proto_version);
|
/external/libmicrohttpd/src/testspdy/ |
test_new_connection.c | 471 uint16_t *spdy_proto_version; local 478 spdy_proto_version = (uint16_t*)arg; 479 *spdy_proto_version = rv; 484 * Setup SSL context. We pass |spdy_proto_version| to get negotiated 487 static void init_ssl_ctx(SSL_CTX *ssl_ctx, uint16_t *spdy_proto_version) 495 spdy_proto_version); 664 uint16_t spdy_proto_version; local 678 init_ssl_ctx(ssl_ctx, &spdy_proto_version); 694 spdylay_printf("[INFO] SPDY protocol version = %d\n", spdy_proto_version); 695 rv = spdylay_session_client_new(&connection.session, spdy_proto_version, [all...] |
test_request_response.c | 459 uint16_t *spdy_proto_version; local 466 spdy_proto_version = (uint16_t*)arg; 467 *spdy_proto_version = rv; 472 * Setup SSL context. We pass |spdy_proto_version| to get negotiated 475 static void init_ssl_ctx(SSL_CTX *ssl_ctx, uint16_t *spdy_proto_version) 483 spdy_proto_version); 652 uint16_t spdy_proto_version; local 666 init_ssl_ctx(ssl_ctx, &spdy_proto_version); 682 printf("[INFO] SPDY protocol version = %d\n", spdy_proto_version); 683 rv = spdylay_session_client_new(&connection.session, spdy_proto_version, [all...] |
test_notls.c | 614 uint16_t spdy_proto_version = 3; local 632 printf("[INFO] SPDY protocol version = %d\n", spdy_proto_version); 633 rv = spdylay_session_client_new(&connection.session, spdy_proto_version,
|