| 2188 | } |
| 2189 | |
| 2190 | void |
| 2191 | Http2ConnectionState::schedule_retransmit(ink_hrtime t) |
| 2192 | { |
| 2193 | Http2StreamDebug(session, 0, "Scheduling retransmitting data frames"); |
| 2194 | SCOPED_MUTEX_LOCK(lock, this->mutex, this_ethread()); |
| 2195 | |
| 2196 | if (retransmit_event == nullptr) { |
| 2197 | SET_HANDLER(&Http2ConnectionState::main_event_handler); |
| 2198 | retransmit_event = this_ethread()->schedule_in(static_cast<Continuation *>(this), t, HTTP2_SESSION_EVENT_XMIT); |
| 2199 | } |
| 2200 | } |
| 2201 | |
| 2202 | void |
| 2203 | Http2ConnectionState::cancel_retransmit() |
no test coverage detected