| 4589 | } |
| 4590 | |
| 4591 | sockaddr const * |
| 4592 | TSHttpSsnClientAddrGet(TSHttpSsn ssnp) |
| 4593 | { |
| 4594 | ProxySession *cs = reinterpret_cast<ProxySession *>(ssnp); |
| 4595 | |
| 4596 | if (cs == nullptr) { |
| 4597 | return nullptr; |
| 4598 | } |
| 4599 | return cs->get_client_addr(); |
| 4600 | } |
| 4601 | sockaddr const * |
| 4602 | TSHttpTxnClientAddrGet(TSHttpTxn txnp) |
| 4603 | { |
no test coverage detected