summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/dumps/0025empty_dynset_0.nft
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2023-09-19 15:25:43 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2023-09-20 17:52:13 +0200
commit7360ab610164c7457b1024419ee046a4d05a6e2f (patch)
tree1b3443e6ce5174c84d2436d5a1f89ba5cd02459e /tests/shell/testcases/nft-f/dumps/0025empty_dynset_0.nft
parentb450c12223c4fc3fd8389809dace7dbccd513e95 (diff)
limit: display default burst when listing ruleset
Default burst for limit is 5 for historical reasons but it is not displayed when listing the ruleset. Update listing to display the default burst to disambiguate. man nft(8) has been recently updated to document this, no action in this front is therefore required. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'tests/shell/testcases/nft-f/dumps/0025empty_dynset_0.nft')
-rw-r--r--tests/shell/testcases/nft-f/dumps/0025empty_dynset_0.nft2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/shell/testcases/nft-f/dumps/0025empty_dynset_0.nft b/tests/shell/testcases/nft-f/dumps/0025empty_dynset_0.nft
index 2bb35592..33b9e4ff 100644
--- a/tests/shell/testcases/nft-f/dumps/0025empty_dynset_0.nft
+++ b/tests/shell/testcases/nft-f/dumps/0025empty_dynset_0.nft
@@ -13,6 +13,6 @@ table ip foo {
set inflows_ratelimit {
type ipv4_addr . inet_service . ifname . ipv4_addr . inet_service
flags dynamic
- elements = { 10.1.0.3 . 39466 . "veth1" . 10.3.0.99 . 5201 limit rate 1/second counter packets 0 bytes 0 }
+ elements = { 10.1.0.3 . 39466 . "veth1" . 10.3.0.99 . 5201 limit rate 1/second burst 5 packets counter packets 0 bytes 0 }
}
}