| 133 | } |
| 134 | |
| 135 | bool |
| 136 | Transaction::configStringSet(TSOverridableConfigKey conf, std::string const &value) |
| 137 | { |
| 138 | return TS_SUCCESS == TSHttpTxnConfigStringSet(state_->txn_, conf, const_cast<TSMgmtString>(value.data()), value.length()); |
| 139 | } |
| 140 | |
| 141 | bool |
| 142 | Transaction::configStringGet(TSOverridableConfigKey conf, std::string &value) |
nothing calls this directly
no test coverage detected