Searched refs:split_send_fragment (Results 1 - 10 of 10) sorted by relevance
/third_party/node/deps/openssl/openssl/ssl/record/ |
H A D | rec_layer_s3.c | 353 size_t n, max_send_fragment, split_send_fragment, maxpipes; in ssl3_write_bytes() local 571 split_send_fragment = ssl_get_split_send_fragment(s); in ssl3_write_bytes() 594 || split_send_fragment == 0 in ssl3_write_bytes() 595 || split_send_fragment > max_send_fragment) { in ssl3_write_bytes() 611 numpipes = ((n - 1) / split_send_fragment) + 1; in ssl3_write_bytes() 615 if (n / numpipes >= split_send_fragment) { in ssl3_write_bytes() 621 pipelens[j] = split_send_fragment; in ssl3_write_bytes()
|
/third_party/openssl/ssl/record/ |
H A D | rec_layer_s3.c | 364 size_t n, max_send_fragment, split_send_fragment, maxpipes; in ssl3_write_bytes() local 582 split_send_fragment = ssl_get_split_send_fragment(s); in ssl3_write_bytes() 605 || split_send_fragment == 0 in ssl3_write_bytes() 606 || split_send_fragment > max_send_fragment) { in ssl3_write_bytes() 622 numpipes = ((n - 1) / split_send_fragment) + 1; in ssl3_write_bytes() 626 if (n / numpipes >= split_send_fragment) { in ssl3_write_bytes() 632 pipelens[j] = split_send_fragment; in ssl3_write_bytes()
|
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | ssl_lib.c | 815 s->split_send_fragment = ctx->split_send_fragment; in SSL_new() 2498 if (s->max_send_fragment < s->split_send_fragment) in SSL_ctrl() 2499 s->split_send_fragment = s->max_send_fragment; in SSL_ctrl() 2504 s->split_send_fragment = larg; in SSL_ctrl() 2671 if (ctx->max_send_fragment < ctx->split_send_fragment) in SSL_CTX_ctrl() 2672 ctx->split_send_fragment = ctx->max_send_fragment; in SSL_CTX_ctrl() 2677 ctx->split_send_fragment = larg; in SSL_CTX_ctrl() 3443 ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; in SSL_CTX_new_ex() 5947 && ssl->split_send_fragment > GET_MAX_FRAGMENT_LENGT in ssl_get_split_send_fragment() [all...] |
H A D | ssl_local.h | 1020 size_t split_send_fragment; member 1599 size_t split_send_fragment; member
|
/third_party/openssl/ssl/ |
H A D | ssl_lib.c | 755 s->split_send_fragment = ctx->split_send_fragment; in SSL_new() 2398 if (s->max_send_fragment < s->split_send_fragment) in SSL_ctrl() 2399 s->split_send_fragment = s->max_send_fragment; in SSL_ctrl() 2404 s->split_send_fragment = larg; in SSL_ctrl() 2571 if (ctx->max_send_fragment < ctx->split_send_fragment) in SSL_CTX_ctrl() 2572 ctx->split_send_fragment = ctx->max_send_fragment; in SSL_CTX_ctrl() 2577 ctx->split_send_fragment = larg; in SSL_CTX_ctrl() 3343 ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; in SSL_CTX_new_ex() 5831 && ssl->split_send_fragment > GET_MAX_FRAGMENT_LENGT in ssl_get_split_send_fragment() [all...] |
H A D | ssl_local.h | 1011 size_t split_send_fragment; member 1570 size_t split_send_fragment; member
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | s_server.c | 1047 unsigned int split_send_fragment = 0, max_pipelines = 0; in s_server_main() local 1602 split_send_fragment = atoi(opt_arg()); in s_server_main() 1915 if (split_send_fragment > 0 in s_server_main() 1916 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) { in s_server_main() 1918 prog, split_send_fragment); in s_server_main()
|
H A D | s_client.c | 871 unsigned int split_send_fragment = 0, max_pipelines = 0; in s_client_main() local 1447 split_send_fragment = atoi(opt_arg()); in s_client_main() 1744 if (split_send_fragment > 0 in s_client_main() 1745 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) { in s_client_main() 1747 prog, split_send_fragment); in s_client_main()
|
/third_party/openssl/apps/ |
H A D | s_server.c | 1047 unsigned int split_send_fragment = 0, max_pipelines = 0; in s_server_main() local 1602 split_send_fragment = atoi(opt_arg()); in s_server_main() 1910 if (split_send_fragment > 0 in s_server_main() 1911 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) { in s_server_main() 1913 prog, split_send_fragment); in s_server_main()
|
H A D | s_client.c | 871 unsigned int split_send_fragment = 0, max_pipelines = 0; in s_client_main() local 1447 split_send_fragment = atoi(opt_arg()); in s_client_main() 1744 if (split_send_fragment > 0 in s_client_main() 1745 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) { in s_client_main() 1747 prog, split_send_fragment); in s_client_main()
|
Completed in 48 milliseconds