diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-03-29 17:23:40 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-03-29 17:23:40 -0700 |
commit | 4e6e6ff12dd1b3c402717d71f9ee1f8f68545213 (patch) | |
tree | beb517d9c00941372a26d1086ab75a6d698f5e14 /scripts | |
parent | dab4e6ebfa43ef7b60eaedb2002cc4724c123d52 (diff) | |
download | vyatta-cfg-qos-4e6e6ff12dd1b3c402717d71f9ee1f8f68545213.tar.gz vyatta-cfg-qos-4e6e6ff12dd1b3c402717d71f9ee1f8f68545213.zip |
Rename rate-limiter to rate-control
Bug 4541
Limiting implies packet drop, but this qos-policy
does shaping.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-qos.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vyatta-qos.pl b/scripts/vyatta-qos.pl index 6fc38dc..4a3783e 100755 --- a/scripts/vyatta-qos.pl +++ b/scripts/vyatta-qos.pl @@ -28,10 +28,10 @@ my $debug = $ENV{'QOS_DEBUG'}; my %policies = ( 'traffic-shaper' => 'TrafficShaper', 'fair-queue' => 'FairQueue', - 'rate-limit' => 'RateLimiter', + 'rate-control' => 'RateLimiter', 'drop-tail' => 'DropTail', 'network-emulator' => 'NetworkEmulator', - 'round-robin' => 'RoundRobin', + 'round-robin' => 'RoundRobin', 'priority-queue' => 'Priority', 'random-detect' => 'RandomDetect', 'traffic-limiter' => 'TrafficLimiter', |