| 179 | } |
| 180 | |
| 181 | void |
| 182 | Http2CommonSession::flush() |
| 183 | { |
| 184 | this->connection_state.cancel_retransmit(); |
| 185 | if (this->_pending_sending_data_size > 0) { |
| 186 | this->_pending_sending_data_size = 0; |
| 187 | this->_write_buffer_last_flush = ink_get_hrtime(); |
| 188 | write_reenable(); |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | int |
| 193 | Http2CommonSession::state_read_connection_preface(int event, void *edata) |
no test coverage detected