| 271 | } |
| 272 | |
| 273 | bool |
| 274 | Transaction::setCacheUrl(const string &cache_url) |
| 275 | { |
| 276 | TSReturnCode res = TSCacheUrlSet(state_->txn_, cache_url.c_str(), cache_url.length()); |
| 277 | return (res == TS_SUCCESS); |
| 278 | } |
| 279 | |
| 280 | void |
| 281 | Transaction::setSkipRemapping(int flag) |
nothing calls this directly
no test coverage detected