| 254 | |
| 255 | public: |
| 256 | UDPPacket * |
| 257 | dequeue_ready(ink_hrtime t) |
| 258 | { |
| 259 | (void)t; |
| 260 | UDPPacket *e = bucket[now_slot].dequeue(); |
| 261 | if (e) { |
| 262 | ink_assert(e->p.in_the_priority_queue); |
| 263 | e->p.in_the_priority_queue = 0; |
| 264 | } |
| 265 | advanceNow(t); |
| 266 | return e; |
| 267 | } |
| 268 | |
| 269 | void |
| 270 | check_ready(ink_hrtime now) |
no test coverage detected