Callback from HttpSM release and do_io_close are the same for the HTTP/2 protocol */
| 1096 | release and do_io_close are the same for the HTTP/2 protocol |
| 1097 | */ |
| 1098 | void |
| 1099 | Http2Stream::release() |
| 1100 | { |
| 1101 | if (_state == Http2StreamState::HTTP2_STREAM_STATE_CLOSED) { |
| 1102 | this->do_io_close(); |
| 1103 | return; |
| 1104 | } |
| 1105 | |
| 1106 | Http2StreamDebug("Delaying do_io_close() until stream is in the closed state"); |
| 1107 | } |
| 1108 | |
| 1109 | void |
| 1110 | Http2Stream::increment_transactions_stat() |
nothing calls this directly
no test coverage detected