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

Function m_unexpected_stream_iter

modules/http2/h2_mplx.c:485–492  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

483}
484
485static int m_unexpected_stream_iter(void *ctx, void *val) {
486 h2_mplx *m = ctx;
487 h2_stream *stream = val;
488 ap_log_cerror(APLOG_MARK, APLOG_WARNING, 0, m->c1, /* NO APLOGNO */
489 H2_STRM_MSG(stream, "unexpected, started=%d, scheduled=%d, ready=%d"),
490 !!stream->c2, stream->scheduled, h2_stream_is_ready(stream));
491 return 1;
492}
493
494static int m_stream_cancel_iter(void *ctx, void *val) {
495 h2_mplx *m = ctx;

Callers

nothing calls this directly

Calls 1

h2_stream_is_readyFunction · 0.85

Tested by

no test coverage detected