| 1560 | } |
| 1561 | |
| 1562 | static void h2_session_ev_proto_error(h2_session *session, int arg, const char *msg) |
| 1563 | { |
| 1564 | if (!session->local.shutdown) { |
| 1565 | ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, session->c1, |
| 1566 | H2_SSSN_LOG(APLOGNO(03402), session, |
| 1567 | "proto error -> shutdown")); |
| 1568 | h2_session_shutdown(session, arg, msg, 0); |
| 1569 | } |
| 1570 | } |
| 1571 | |
| 1572 | static void h2_session_ev_conn_timeout(h2_session *session, int arg, const char *msg) |
| 1573 | { |
no test coverage detected