fix previous NEWS commit, oops
[ferm.git] / test / misc / comments.ferm
blob62e4f4074c16ff105071427ff476b5d023a28cbb
1 # test comment syntax
3 @def $EMPTY = (
4     # only a comment
5 );
7 @def $ONE = (
8     192.168.0.1 # comment after data
9 );
11 @def $TWO = (
12     # nothing in this line
13     192.168.0.2
16 table filter chain INPUT {
17     saddr (
18         192.168.0.3 #foo
19     ) ACCEPT;
20     daddr $EMPTY DROP;
21     saddr $ONE REJECT;
22     daddr $TWO ACCEPT;