Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove last vestiges of NFC (Peter Riley <Peter.Riley@hotpop.com>) | Peter Riley | 2007-09-02 | 1 | -2/+1 |
| | |||||
* | Make the option structures const. | Jan Engelhardt | 2007-07-30 | 1 | -1/+1 |
| | | | | Signed-off-by: Jan Engelhardt <jengelh@gmx.de> | ||||
* | Fixes warning on compilation of ip6tables matches/targets | Yasuyuki KOZAKAI | 2007-07-24 | 1 | -3/+3 |
| | | | | | | This changes the type of arguments as follows - ip6t_ip6 * -> void * - ip6t_entry * -> void * | ||||
* | Replaces ip6t_entry_* with xt_entry_* in matches/targets | Yasuyuki KOZAKAI | 2007-07-24 | 1 | -4/+4 |
| | |||||
* | - force user to specify --icmpv6-type if icmpv6 match is required to load | Yasuyuki KOZAKAI | 2006-07-04 | 1 | -1/+7 |
| | | | | | | - Don't allow multiple --icmp-type/icmpv6-type (Closes: #461) | ||||
* | fix loading shared library of ICMPv6 match. | Yasuyuki KOZAKAI | 2006-04-15 | 1 | -0/+272 |
The current ip6tables tries to load libip6t_icmp6.so when user types 'ip6tables -p icmpv6 ...' or 'ip6tables ... -m icmpv6' ...', and it fails. This patch renames libip6t_icmpv6.c to libip6t_icmp6.c so that ip6tables can load it. Now kernel module and user library has same name 'icmp6'. It can reduce confusion about name mismatch. That's why I renamed it instead of reverting change in find_match() which brought this bug. This patch keeps compatibiity and we can use '-p icmpv6', '-p ipv6-icmpv6', '-m icmpv6', '-m ipv6-icmpv6', and '-m icmp6', as ever. |