| 115 | return TS_SUCCESS == TSHttpTxnConfigIntSet(state_->txn_, conf, static_cast<TSMgmtInt>(value)); |
| 116 | } |
| 117 | bool |
| 118 | Transaction::configIntGet(TSOverridableConfigKey conf, int *value) |
| 119 | { |
| 120 | return TS_SUCCESS == TSHttpTxnConfigIntGet(state_->txn_, conf, reinterpret_cast<TSMgmtInt *>(value)); |
| 121 | } |
| 122 | |
| 123 | bool |
| 124 | Transaction::configFloatSet(TSOverridableConfigKey conf, float value) |
nothing calls this directly
no test coverage detected