| 5291 | } |
| 5292 | |
| 5293 | void |
| 5294 | TSHttpSsnDebugSet(TSHttpSsn ssnp, int on) |
| 5295 | { |
| 5296 | sdk_assert(sdk_sanity_check_http_ssn(ssnp) == TS_SUCCESS); |
| 5297 | (reinterpret_cast<ProxySession *>(ssnp))->set_debug(0 != on); |
| 5298 | } |
| 5299 | |
| 5300 | int |
| 5301 | TSHttpSsnDebugGet(TSHttpSsn ssnp, int *on) |
nothing calls this directly
no test coverage detected