summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/nft-f/dumps/0003rollback_jump_0.nft
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/nft-f/dumps/0003rollback_jump_0.nft')
-rw-r--r--tests/shell/testcases/nft-f/dumps/0003rollback_jump_0.nft16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/shell/testcases/nft-f/dumps/0003rollback_jump_0.nft b/tests/shell/testcases/nft-f/dumps/0003rollback_jump_0.nft
new file mode 100644
index 00000000..f6f26158
--- /dev/null
+++ b/tests/shell/testcases/nft-f/dumps/0003rollback_jump_0.nft
@@ -0,0 +1,16 @@
+table ip t {
+ set t {
+ type ipv4_addr
+ elements = { 1.1.1.1 }
+ }
+
+ chain c {
+ ct state new
+ tcp dport { 22222 }
+ ip saddr @t drop
+ jump other
+ }
+
+ chain other {
+ }
+}