| 1739 | } |
| 1740 | |
| 1741 | static void ping_arrived(h2_proxy_session *session) |
| 1742 | { |
| 1743 | if (!h2_proxy_ihash_empty(session->streams)) { |
| 1744 | ap_log_cerror(APLOG_MARK, APLOG_DEBUG, 0, session->c, APLOGNO(03470) |
| 1745 | "h2_proxy_session(%s): ping arrived, unblocking streams", |
| 1746 | session->id); |
| 1747 | h2_proxy_ihash_iter(session->streams, ping_arrived_iter, &session); |
| 1748 | } |
| 1749 | } |
| 1750 | |
| 1751 | typedef struct { |
| 1752 | h2_proxy_session *session; |
no test coverage detected