/ HttpCacheAction
| 49 | // HttpCacheAction |
| 50 | // |
| 51 | void |
| 52 | HttpCacheAction::cancel(Continuation *c) |
| 53 | { |
| 54 | ink_assert(c == nullptr || c == _cache_sm->master_sm); |
| 55 | ink_assert(this->cancelled == false); |
| 56 | |
| 57 | this->cancelled = true; |
| 58 | _cache_sm->cancel_pending_action(); |
| 59 | } |
| 60 | |
| 61 | //// |
| 62 | // HttpCacheSM |
no test coverage detected