| 1729 | } |
| 1730 | |
| 1731 | static int ping_arrived_iter(void *udata, void *val) |
| 1732 | { |
| 1733 | h2_proxy_stream *stream = val; |
| 1734 | if (stream->waiting_on_ping) { |
| 1735 | stream->waiting_on_ping = 0; |
| 1736 | stream_resume(stream); |
| 1737 | } |
| 1738 | return 1; |
| 1739 | } |
| 1740 | |
| 1741 | static void ping_arrived(h2_proxy_session *session) |
| 1742 | { |
nothing calls this directly
no test coverage detected