MCPcopy Create free account
hub / github.com/apache/httpd / beam_out

Function beam_out

modules/http2/h2_c2.c:356–366  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

354}
355
356static apr_status_t beam_out(conn_rec *c2, h2_conn_ctx_t *conn_ctx, apr_bucket_brigade* bb)
357{
358 apr_off_t written = 0;
359 apr_status_t rv;
360
361 rv = h2_beam_send(conn_ctx->beam_out, c2, bb, APR_BLOCK_READ, &written);
362 if (APR_STATUS_IS_EAGAIN(rv)) {
363 rv = APR_SUCCESS;
364 }
365 return rv;
366}
367
368static apr_status_t h2_c2_filter_out(ap_filter_t* f, apr_bucket_brigade* bb)
369{

Callers 1

h2_c2_filter_outFunction · 0.85

Calls 1

h2_beam_sendFunction · 0.85

Tested by

no test coverage detected