| 5334 | } |
| 5335 | |
| 5336 | int64_t |
| 5337 | TSHttpTxnServerReqBodyBytesGet(TSHttpTxn txnp) |
| 5338 | { |
| 5339 | sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS); |
| 5340 | |
| 5341 | HttpSM *sm = reinterpret_cast<HttpSM *>(txnp); |
| 5342 | return sm->server_request_body_bytes; |
| 5343 | } |
| 5344 | |
| 5345 | int |
| 5346 | TSHttpTxnServerRespHdrBytesGet(TSHttpTxn txnp) |
no test coverage detected