| 170 | } |
| 171 | |
| 172 | void |
| 173 | INKVConnInternal::reenable(VIO * /* vio ATS_UNUSED */) |
| 174 | { |
| 175 | if (ink_atomic_increment((int *)&m_event_count, 1) < 0) { |
| 176 | ink_assert(!"not reached"); |
| 177 | } |
| 178 | eventProcessor.schedule_imm(this, ET_NET); |
| 179 | } |
| 180 | |
| 181 | void |
| 182 | INKVConnInternal::retry(unsigned int delay) |
no test coverage detected