HomeSort by: relevance | last modified time | path
    Searched refs:split_send_fragment (Results 1 - 15 of 15) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/record/
rec_layer_s3.c 278 size_t n, max_send_fragment, split_send_fragment, maxpipes; local
382 split_send_fragment = ssl_get_split_send_fragment(s);
385 || split_send_fragment == 0
386 || split_send_fragment > max_send_fragment) {
416 &split_send_fragment);
429 if (split_send_fragment > max_send_fragment) {
434 if (n / maxpipes >= split_send_fragment) {
442 tmpls[j].buf = &(buf[tot]) + (j * split_send_fragment);
443 tmpls[j].buflen = split_send_fragment;
446 s->rlayer.wpend_tot = maxpipes * split_send_fragment;
    [all...]
  /src/crypto/external/bsd/openssl/dist/ssl/record/
rec_layer_s3.c 368 size_t n, max_send_fragment, split_send_fragment, maxpipes; local
586 split_send_fragment = ssl_get_split_send_fragment(s);
609 || split_send_fragment == 0
610 || split_send_fragment > max_send_fragment) {
626 numpipes = ((n - 1) / split_send_fragment) + 1;
630 if (n / numpipes >= split_send_fragment) {
636 pipelens[j] = split_send_fragment;
  /src/crypto/external/bsd/openssl.old/dist/ssl/record/
rec_layer_s3.c 355 size_t n, max_send_fragment, split_send_fragment, maxpipes; local
569 split_send_fragment = ssl_get_split_send_fragment(s);
592 if (max_send_fragment == 0 || split_send_fragment == 0
593 || split_send_fragment > max_send_fragment) {
610 numpipes = ((n - 1) / split_send_fragment) + 1;
  /src/crypto/external/bsd/openssl/dist/ssl/
ssl_lib.c 766 s->split_send_fragment = ctx->split_send_fragment;
2413 if (s->max_send_fragment < s->split_send_fragment)
2414 s->split_send_fragment = s->max_send_fragment;
2419 s->split_send_fragment = larg;
2586 if (ctx->max_send_fragment < ctx->split_send_fragment)
2587 ctx->split_send_fragment = ctx->max_send_fragment;
2592 ctx->split_send_fragment = larg;
3358 ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
5846 && ssl->split_send_fragment > GET_MAX_FRAGMENT_LENGTH(ssl->session)
    [all...]
ssl_local.h 1011 size_t split_send_fragment; member in struct:ssl_ctx_st
1570 size_t split_send_fragment; member in struct:ssl_st
  /src/crypto/external/bsd/openssl.old/dist/ssl/
ssl_lib.c 757 s->split_send_fragment = ctx->split_send_fragment;
2231 if (s->max_send_fragment < s->split_send_fragment)
2232 s->split_send_fragment = s->max_send_fragment;
2237 s->split_send_fragment = larg;
2395 if (ctx->max_send_fragment < ctx->split_send_fragment)
2396 ctx->split_send_fragment = ctx->max_send_fragment;
2401 ctx->split_send_fragment = larg;
3125 ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
5593 && ssl->split_send_fragment > GET_MAX_FRAGMENT_LENGTH(ssl->session)
    [all...]
ssl_local.h 900 size_t split_send_fragment; member in struct:ssl_ctx_st
1254 size_t split_send_fragment; member in struct:ssl_st
  /src/crypto/external/bsd/openssl/dist/apps/
s_client.c 871 unsigned int split_send_fragment = 0, max_pipelines = 0; local
1447 split_send_fragment = atoi(opt_arg());
1744 if (split_send_fragment > 0
1745 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1747 prog, split_send_fragment);
s_server.c 1047 unsigned int split_send_fragment = 0, max_pipelines = 0; local
1602 split_send_fragment = atoi(opt_arg());
1915 if (split_send_fragment > 0
1916 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1918 prog, split_send_fragment);
  /src/crypto/external/bsd/openssl.old/dist/apps/
s_client.c 967 unsigned int split_send_fragment = 0, max_pipelines = 0; local
1514 split_send_fragment = atoi(opt_arg());
1781 if (split_send_fragment > 0
1782 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1784 prog, split_send_fragment);
s_server.c 1054 unsigned int split_send_fragment = 0, max_pipelines = 0; local
1576 split_send_fragment = atoi(opt_arg());
1860 if (split_send_fragment > 0
1861 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1863 prog, split_send_fragment);
  /src/crypto/external/apache2/openssl/dist/ssl/
ssl_lib.c 813 s->split_send_fragment = ctx->split_send_fragment;
3007 if (sc->max_send_fragment < sc->split_send_fragment)
3008 sc->split_send_fragment = sc->max_send_fragment;
3014 sc->split_send_fragment = larg;
3175 if (ctx->max_send_fragment < ctx->split_send_fragment)
3176 ctx->split_send_fragment = ctx->max_send_fragment;
3181 ctx->split_send_fragment = larg;
4147 ret->split_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;
7292 && sc->split_send_fragment > GET_MAX_FRAGMENT_LENGTH(sc->session)
    [all...]
ssl_local.h 963 size_t split_send_fragment; member in struct:ssl_ctx_st
1607 size_t split_send_fragment; member in struct:ssl_connection_st
  /src/crypto/external/apache2/openssl/dist/apps/
s_client.c 1021 unsigned int split_send_fragment = 0, max_pipelines = 0; local
1634 split_send_fragment = atoi(opt_arg());
1953 if (split_send_fragment > 0
1954 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
1956 prog, split_send_fragment);
s_server.c 1180 unsigned int split_send_fragment = 0, max_pipelines = 0; local
1750 split_send_fragment = atoi(opt_arg());
2104 if (split_send_fragment > 0
2105 && !SSL_CTX_set_split_send_fragment(ctx, split_send_fragment)) {
2107 prog, split_send_fragment);

Completed in 64 milliseconds