| LQL Reference Manual |
|---|
LQLQDiscPFIFO — LQLQDiscPFIFO models the PFIFO queueing discipline.
struct LQLQDiscPFIFO; LQLQDiscPFIFO* lql_qdisc_pfifo_new (void); unsigned int lql_qdisc_pfifo_get_queueLength (LQLQDiscPFIFO *self); gboolean lql_qdisc_pfifo_set_queueLength (LQLQDiscPFIFO *self, unsigned int queueLength);
LQLQDiscPFIFO* lql_qdisc_pfifo_new (void);
Build a new instance of LQLQDiscPFIFO.
| Returns : | A new LQLQDiscPFIFO instance. |
unsigned int lql_qdisc_pfifo_get_queueLength
(LQLQDiscPFIFO *self);Get the maximum length of the packet queue.
| self : | The LQLQDiscPFIFO object to work with. |
| Returns : | The length of the packet queue. |
gboolean lql_qdisc_pfifo_set_queueLength (LQLQDiscPFIFO *self, unsigned int queueLength);
Set the maximum length of the packet queue on this LQLQDiscPFIFO.
| self : | The LQLQDisc object to work with. |
| queueLength : | The length of the packet queue. |
| Returns : | TRUE on success, FALSE on error. |
| << LQLQDiscHTB | LQLQDiscPFIFOFast >> |