Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ipset: use NFPROTO_ constants | Jan Engelhardt | 2011-08-31 | 1 | -1/+1 |
| | | | | | ipset is actually using NFPROTO values rather than AF (xt_set passes that along). | ||||
* | Propagate "expose userspace-relevant parts in ip_set.h" to ipset source | Jozsef Kadlecsik | 2011-08-31 | 1 | -2/+2 |
| | | | | | | With the header file restructuring, the ipset userspace enums IPSET_DIM_* clash with the kernel ones. In this patch the userspace is converted to use the kernel part enums and thus we got rid of userspace enums IPSET_DIM_*. | ||||
* | Whitespace and coding fixes detected by checkpatch.pl | Jozsef Kadlecsik | 2011-05-31 | 1 | -7/+7 |
| | |||||
* | hash:net,iface type introduced | Jozsef Kadlecsik | 2011-05-30 | 1 | -0/+120 |
The hash:net,iface type makes possible to store network address and interface name pairs in a set. It's mostly suitable for egress and ingress filtering. Examples: # ipset create test hash:net,iface # ipset add test 192.168.0.0/16,eth0 # ipset add test 192.168.0.0/24,eth1 |