* A streams output state has changed. */
| 1403 | * A streams output state has changed. |
| 1404 | */ |
| 1405 | static 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 | |
| 1419 | static const char *StateNames[] = { |
no test coverage detected