mirror of
https://gitlab.com/shorewall/code.git
synced 2025-06-19 17:28:35 +02:00
Raise max limit to 128
This commit is contained in:
parent
f0b4b1f42e
commit
105754823a
@ -764,7 +764,7 @@ sub validate_tc_class( ) {
|
||||
$devref->{occurs} = 1;
|
||||
} elsif ( $option =~ /^limit=(\d+)$/ ) {
|
||||
warning_message "limit ignore with pfifo queuing" if $tcref->{pfifo};
|
||||
fatal_error "Invalid limit ($1)" if $1 < 3 || $1 > 127;
|
||||
fatal_error "Invalid limit ($1)" if $1 < 3 || $1 > 128;
|
||||
$tcref->{limit} = $1;
|
||||
} else {
|
||||
fatal_error "Unknown option ($option)";
|
||||
|
@ -425,8 +425,8 @@
|
||||
<para>Added in Shorewall 4.4.3. When specified for a leaf
|
||||
class, specifies the maximum number of packets that may be
|
||||
queued within the class. The <emphasis>number</emphasis> must
|
||||
be > 2 and less than 128. If not specified, the value 127
|
||||
is assumed. </para>
|
||||
be > 2 and <=128. If not specified, the value 127 is
|
||||
assumed.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
@ -376,8 +376,8 @@
|
||||
<para>Added in Shorewall 4.4.3. When specified for a leaf
|
||||
class, specifies the maximum number of packets that may be
|
||||
queued within the class. The <emphasis>number</emphasis> must
|
||||
be > 2 and less than 128. If not specified, the value 127
|
||||
is assumed.</para>
|
||||
be > 2 and <= 128. If not specified, the value 127 is
|
||||
assumed.</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
|
Loading…
x
Reference in New Issue
Block a user