| 52 | }; |
| 53 | |
| 54 | inline int |
| 55 | Http1Transaction::get_transaction_id() const |
| 56 | { |
| 57 | // For HTTP/1 there is only one on-going transaction at a time per session/connection. Therefore, the transaction count can be |
| 58 | // presumed not to increase during the lifetime of a transaction, thus this function will return a consistent unique transaction |
| 59 | // identifier. |
| 60 | // |
| 61 | return _proxy_ssn->get_transact_count(); |
| 62 | } |
| 63 | |
| 64 | inline void |
| 65 | Http1Transaction::reset() |
nothing calls this directly
no test coverage detected