| 4434 | } |
| 4435 | |
| 4436 | TSReturnCode |
| 4437 | TSHttpTxnServerRespNoStoreSet(TSHttpTxn txnp, int flag) |
| 4438 | { |
| 4439 | sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS); |
| 4440 | |
| 4441 | HttpTransact::State *s = &((reinterpret_cast<HttpSM *>(txnp))->t_state); |
| 4442 | s->api_server_response_no_store = (flag != 0); |
| 4443 | |
| 4444 | return TS_SUCCESS; |
| 4445 | } |
| 4446 | |
| 4447 | bool |
| 4448 | TSHttpTxnServerRespNoStoreGet(TSHttpTxn txnp) |
no test coverage detected