-
Notifications
You must be signed in to change notification settings - Fork 321
FrontDropQueue
Eddie Kohler edited this page Oct 17, 2017
·
4 revisions
FrontDropQueue — Click element; stores packets in drop-from-front FIFO queue
FrontDropQueue
FrontDropQueue(CAPACITY)
Ports: 1 input, 1-2 outputs
Stores incoming packets in a first-in-first-out queue. Drops the head packet before inserting the incoming packet if the queue already holds CAPACITY packets. The default for CAPACITY is 1000.
- length (read-only) — Returns the current number of packets in the queue.
- highwater_length (read-only) — Returns the maximum number of packets that have ever been in the queue at once.
- capacity (read/write) — Returns or sets the queue's capacity.
- drops (read-only) — Returns the number of packets dropped by the Queue so far. Dropped packets are emitted on output 1 if output 1 exists.
-
reset_counts (write-only) —
When written, resets the
drops
andhighwater_length
counters. - reset (write-only) — When written, drops all packets in the Queue.
Queue, SimpleQueue, MixedQueue, RED
Generated by click-elem2man from ../elements/standard/frontdropqueue.hh:6
on 2017/10/17.