import-ferm: use module data from ferm
[ferm.git] / test / misc / chain.ferm
blob73d38a943328e8678c33020c696cd511e7b323e4
1 table filter {
2     chain FOO {
3         ACCEPT;
4     }
5     chain INPUT {
6         # jump to previously declared chain
7         proto tcp goto FOO;
8         # jump to chain which is not yet declared
9         proto udp goto BAR;
10     }
11     chain BAR {
12         DROP;
13     }