Lines Matching refs:maxpipes
275 size_t n, max_send_fragment, split_send_fragment, maxpipes; in ssl3_write_bytes() local
412 maxpipes = s->rlayer.wrlmethod->get_max_records(s->rlayer.wrl, type, n, in ssl3_write_bytes()
421 if (s->max_pipelines > 0 && maxpipes > s->max_pipelines) in ssl3_write_bytes()
422 maxpipes = s->max_pipelines; in ssl3_write_bytes()
424 if (maxpipes > SSL_MAX_PIPELINES) in ssl3_write_bytes()
425 maxpipes = SSL_MAX_PIPELINES; in ssl3_write_bytes()
432 if (n / maxpipes >= split_send_fragment) { in ssl3_write_bytes()
437 for (j = 0; j < maxpipes; j++) { in ssl3_write_bytes()
444 s->rlayer.wpend_tot = maxpipes * split_send_fragment; in ssl3_write_bytes()
447 tmppipelen = n / maxpipes; in ssl3_write_bytes()
448 remain = n % maxpipes; in ssl3_write_bytes()
455 for (j = 0; j < maxpipes; j++) { in ssl3_write_bytes()
469 s->rlayer.wrlmethod->write_records(s->rlayer.wrl, tmpls, maxpipes)); in ssl3_write_bytes()