| 5298 | } |
| 5299 | |
| 5300 | int |
| 5301 | TSHttpSsnDebugGet(TSHttpSsn ssnp, int *on) |
| 5302 | { |
| 5303 | sdk_assert(sdk_sanity_check_http_ssn(ssnp) == TS_SUCCESS); |
| 5304 | sdk_assert(on != nullptr); |
| 5305 | *on = (reinterpret_cast<ProxySession *>(ssnp))->debug(); |
| 5306 | return TS_SUCCESS; |
| 5307 | } |
| 5308 | |
| 5309 | int |
| 5310 | TSHttpTxnClientReqHdrBytesGet(TSHttpTxn txnp) |
nothing calls this directly
no test coverage detected