Searched refs:maxpipes (Results 1 – 1 of 1) sorted by relevance
275 size_t n, max_send_fragment, split_send_fragment, maxpipes; in ssl3_write_bytes() local421 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()[all …]
Completed in 7 milliseconds