Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix more sparse warnings: non-C99 array declaration, incorrect function ↵ | Patrick McHardy | 2007-09-08 | 1 | -2/+0 |
| | | | | prototypes | ||||
* | Fix aligned_u64 type on 64 bit: its an unsigned long, not an unsigned long long. | Patrick McHardy | 2007-09-05 | 1 | -1/+1 |
| | | | | Fixes compiler warning in quota match. | ||||
* | Remove last vestiges of NFC (Peter Riley <Peter.Riley@hotpop.com>) | Peter Riley | 2007-09-02 | 1 | -3/+2 |
| | |||||
* | Make @msg argument a const char *, just like printf(). | Jan Engelhardt | 2007-08-01 | 1 | -1/+1 |
| | | | | Signed-off-by: Jan Engelhardt <jengelh@gmx.de> | ||||
* | Make xtables_target->extra_opts const (xtables_match->extra_opts already is) | Jan Engelhardt | 2007-07-30 | 1 | -1/+1 |
| | | | | Signed-off-by: Jan Engelhardt <jengelh@gmx.de> | ||||
* | Moves all declarations in iptables_common.h to xtables.h. | Yasuyuki KOZAKAI | 2007-07-24 | 1 | -0/+31 |
| | |||||
* | Moves IPPROTO_* and IP[6]T_LIB_DIR definitions to xtables.h | Yasuyuki KOZAKAI | 2007-07-24 | 1 | -0/+14 |
| | |||||
* | Moves some duplicated functions in ip[6]tables.c to xtables.c | Yasuyuki KOZAKAI | 2007-07-24 | 1 | -0/+17 |
| | | | | | string_to_number_ll, string_to_number_l, string_to_number, service_to_port, parse_port, parse_interface, are moved. | ||||
* | Introduces xtables match/target registration | Yasuyuki KOZAKAI | 2007-07-24 | 1 | -0/+173 |
| | | | | | | | | | | | | | | | | | | | | | | | - moves lib_dir to xtables.c - introduces struct pfinfo which has protocol family dependent infomations. - unifies load_ip[6]tables_ko() and moves them as load_xtables_ko() - introduces xt_{match,match_rule,target,tryload} and replaces ip[6]t_* with them - unifies following functions and move them to xtables.c - find_{match,find_target} - compatible_revision, compatible_{match,target}_revision - introduces xtables_register_{match,target} and make register_{match,target}[6] call them. xtables_register_* register ONLY matches/targets matched protocol family Some concepts: - source compatibility for libip[6]t_xxx.c with warning on compilation not binary compatibility. - binary compatibility between 2.4/2.6 kernel and iptables/ip6tables, of cause. - xtables is enough to support only one address family at runtime. Then xtables keeps infomations of only the focused address famiy in struct afinfo. | ||||
* | Moves ip[6]tables_insmod() to xtables.c as xtables_insmod() | Yasuyuki KOZAKAI | 2007-07-24 | 1 | -0/+3 |
| | |||||
* | Moves common fw_malloc() and fw_calloc() to xtables.c | Yasuyuki KOZAKAI | 2007-07-24 | 1 | -0/+3 |
| | |||||
* | Adds xtables.[ch] and change Makefile to compile it | Yasuyuki KOZAKAI | 2007-07-24 | 1 | -0/+4 |