fix previous NEWS commit, oops
[ferm.git] / test / misc / chain.ferm
blob6c030cb0a0cf059823f9007951ccfe5353dce86e
1 table filter {
2     chain FOO {
3         ACCEPT;
4     }
5     chain INPUT {
6         # jump to previously declared chain
7         proto tcp jump FOO;
8         # jump to chain which is not yet declared
9         proto udp jump BAR;
10     }
11     chain BAR {
12         DROP;
13     }