-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
netfilter: rename ipt_recent to xt_recent
Like with other modules (such as ipt_state), ipt_recent.h is changed to forward definitions to (IOW include) xt_recent.h, and xt_recent.c is changed to use the new constant names. Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Patrick McHardy <kaber@trash.net>
- Loading branch information
Jan Engelhardt
authored and
Patrick McHardy
committed
Oct 8, 2008
1 parent
76108ce
commit e948b20
Showing
8 changed files
with
69 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#ifndef _LINUX_NETFILTER_XT_RECENT_H | ||
#define _LINUX_NETFILTER_XT_RECENT_H 1 | ||
|
||
enum { | ||
XT_RECENT_CHECK = 1 << 0, | ||
XT_RECENT_SET = 1 << 1, | ||
XT_RECENT_UPDATE = 1 << 2, | ||
XT_RECENT_REMOVE = 1 << 3, | ||
XT_RECENT_TTL = 1 << 4, | ||
|
||
XT_RECENT_SOURCE = 0, | ||
XT_RECENT_DEST = 1, | ||
|
||
XT_RECENT_NAME_LEN = 200, | ||
}; | ||
|
||
struct xt_recent_mtinfo { | ||
u_int32_t seconds; | ||
u_int32_t hit_count; | ||
u_int8_t check_set; | ||
u_int8_t invert; | ||
char name[XT_RECENT_NAME_LEN]; | ||
u_int8_t side; | ||
}; | ||
|
||
#endif /* _LINUX_NETFILTER_XT_RECENT_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,21 @@ | ||
#ifndef _IPT_RECENT_H | ||
#define _IPT_RECENT_H | ||
|
||
#define RECENT_NAME "ipt_recent" | ||
#define RECENT_VER "v0.3.1" | ||
#include <linux/netfilter/xt_recent.h> | ||
|
||
#define IPT_RECENT_CHECK 1 | ||
#define IPT_RECENT_SET 2 | ||
#define IPT_RECENT_UPDATE 4 | ||
#define IPT_RECENT_REMOVE 8 | ||
#define IPT_RECENT_TTL 16 | ||
#define ipt_recent_info xt_recent_mtinfo | ||
|
||
#define IPT_RECENT_SOURCE 0 | ||
#define IPT_RECENT_DEST 1 | ||
enum { | ||
IPT_RECENT_CHECK = XT_RECENT_CHECK, | ||
IPT_RECENT_SET = XT_RECENT_SET, | ||
IPT_RECENT_UPDATE = XT_RECENT_UPDATE, | ||
IPT_RECENT_REMOVE = XT_RECENT_REMOVE, | ||
IPT_RECENT_TTL = XT_RECENT_TTL, | ||
|
||
#define IPT_RECENT_NAME_LEN 200 | ||
IPT_RECENT_SOURCE = XT_RECENT_SOURCE, | ||
IPT_RECENT_DEST = XT_RECENT_DEST, | ||
|
||
struct ipt_recent_info { | ||
u_int32_t seconds; | ||
u_int32_t hit_count; | ||
u_int8_t check_set; | ||
u_int8_t invert; | ||
char name[IPT_RECENT_NAME_LEN]; | ||
u_int8_t side; | ||
IPT_RECENT_NAME_LEN = XT_RECENT_NAME_LEN, | ||
}; | ||
|
||
#endif /*_IPT_RECENT_H*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters