diff options
author | Dmitry Kozlov <xeb@mail.ru> | 2014-09-13 10:49:16 +0400 |
---|---|---|
committer | Dmitry Kozlov <xeb@mail.ru> | 2014-09-13 10:49:16 +0400 |
commit | 8e4a659d3830f83216308e5203933af2c4c72a19 (patch) | |
tree | 45d1413d94df3f47672d2027218a908fcdd649ab /accel-pppd/shaper/shaper.c | |
parent | 292439d2e4e7a02a33a621dbb24e0a25490d3ebf (diff) | |
download | accel-ppp-xebd-8e4a659d3830f83216308e5203933af2c4c72a19.tar.gz accel-ppp-xebd-8e4a659d3830f83216308e5203933af2c4c72a19.zip |
shaper: implemented fq_codel leaf qdisc
Parameters are same as for tc:
[shaper]
leaf-qdisc=fq_codel [ limit PACKETS ] [flows NUMBER ] [ target TIME ] [ interval TIME ] [ quantum BYTES ] [ [no]ecn ]
Diffstat (limited to 'accel-pppd/shaper/shaper.c')
-rw-r--r-- | accel-pppd/shaper/shaper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/accel-pppd/shaper/shaper.c b/accel-pppd/shaper/shaper.c index c27ec72..40677de 100644 --- a/accel-pppd/shaper/shaper.c +++ b/accel-pppd/shaper/shaper.c @@ -50,6 +50,9 @@ int conf_leaf_qdisc; int conf_lq_arg1; int conf_lq_arg2; int conf_lq_arg3; +int conf_lq_arg4; +int conf_lq_arg5; +int conf_lq_arg6; static int temp_down_speed; static int temp_up_speed; |