Home
last modified time | relevance | path

Searched refs:split_send_fragment (Results 1 – 6 of 6) sorted by relevance

/third_party/openssl/doc/man3/
DSSL_CTX_set_split_send_fragment.pod68 B<split_send_fragment>.
70 For example if B<split_send_fragment> is set to 2000 and B<max_pipelines> is 4
81 B<split_send_fragment> must always be less than or equal to
/third_party/openssl/ssl/record/
Drec_layer_s3.c342 size_t n, max_send_fragment, split_send_fragment, maxpipes; in ssl3_write_bytes() local
556 split_send_fragment = ssl_get_split_send_fragment(s); in ssl3_write_bytes()
579 if (max_send_fragment == 0 || split_send_fragment == 0 in ssl3_write_bytes()
580 || split_send_fragment > max_send_fragment) { in ssl3_write_bytes()
597 numpipes = ((n - 1) / split_send_fragment) + 1; in ssl3_write_bytes()
/third_party/openssl/ssl/
Dssl_lib.c757 s->split_send_fragment = ctx->split_send_fragment; in SSL_new()
2216 if (s->max_send_fragment < s->split_send_fragment) in SSL_ctrl()
2217 s->split_send_fragment = s->max_send_fragment; in SSL_ctrl()
2222 s->split_send_fragment = larg; in SSL_ctrl()
2380 if (ctx->max_send_fragment < ctx->split_send_fragment) in SSL_CTX_ctrl()
2381 ctx->split_send_fragment = ctx->max_send_fragment; in SSL_CTX_ctrl()
2386 ctx->split_send_fragment = larg; in SSL_CTX_ctrl()
3110 ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH; in SSL_CTX_new()
5577 && ssl->split_send_fragment > GET_MAX_FRAGMENT_LENGTH(ssl->session)) in ssl_get_split_send_fragment()
5581 if (ssl->split_send_fragment > ssl->max_send_fragment) in ssl_get_split_send_fragment()
[all …]
Dssl_local.h900 size_t split_send_fragment; member
1254 size_t split_send_fragment; member
/third_party/openssl/apps/
Ds_server.c1054 unsigned int split_send_fragment = 0, max_pipelines = 0; in s_server_main() local
1576 split_send_fragment = atoi(opt_arg()); in s_server_main()
1860 if (split_send_fragment > 0 in s_server_main()
1861 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) { in s_server_main()
1863 prog, split_send_fragment); in s_server_main()
Ds_client.c967 unsigned int split_send_fragment = 0, max_pipelines = 0; in s_client_main() local
1514 split_send_fragment = atoi(opt_arg()); in s_client_main()
1781 if (split_send_fragment > 0 in s_client_main()
1782 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) { in s_client_main()
1784 prog, split_send_fragment); in s_client_main()