| 26 | #include "proxy/http/HttpSM.h" |
| 27 | |
| 28 | void |
| 29 | Http1ClientTransaction::release() |
| 30 | { |
| 31 | // Turn off reading until we are done with the SM |
| 32 | // At that point the transaction/session with either be closed |
| 33 | // or be put into keep alive state to wait from the next transaction |
| 34 | this->do_io_read(this->_sm, 0, nullptr); |
| 35 | _proxy_ssn->clear_session_active(); |
| 36 | } |
| 37 | |
| 38 | void |
| 39 | Http1ClientTransaction::transaction_done() |
nothing calls this directly
no test coverage detected