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

Function on_stream_output

modules/http2/h2_session.c:1405–1416  ·  view source on GitHub ↗

* A streams output state has changed. */

Source from the content-addressed store, hash-verified

1403 * A streams output state has changed.
1404 */
1405static void on_stream_output(void *ctx, h2_stream *stream)
1406{
1407 h2_session *session = ctx;
1408
1409 ap_assert(stream);
1410 ap_log_cerror(APLOG_MARK, APLOG_TRACE2, 0, session->c1,
1411 H2_STRM_MSG(stream, "on_output change"));
1412 if (stream->id != 0) {
1413 update_child_status(session, SERVER_BUSY_WRITE, "write", stream);
1414 h2_stream_on_output_change(stream);
1415 }
1416}
1417
1418
1419static const char *StateNames[] = {

Callers 1

mplx_pollset_pollFunction · 0.85

Calls 2

update_child_statusFunction · 0.85

Tested by

no test coverage detected