mirror of
git://git.code.sf.net/p/xtables-addons/xtables-addons
synced 2025-09-08 13:44:56 +02:00
doc: add API helper files
These files should be a very quick reference to the Xtables APIs of previous Linux kernel versions and Xtables-addons. Their contents have been reformatted so as to be usable with diff -u.
This commit is contained in:
64
doc/api/2.6.17.c
Normal file
64
doc/api/2.6.17.c
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
match:
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
int
|
||||||
|
(*match)(
|
||||||
|
const struct sk_buff *skb,
|
||||||
|
const struct net_device *in,
|
||||||
|
const struct net_device *out,
|
||||||
|
const struct xt_match *match,
|
||||||
|
const void *matchinfo,
|
||||||
|
int offset,
|
||||||
|
unsigned int protoff,
|
||||||
|
int *hotdrop,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* error code */
|
||||||
|
int
|
||||||
|
(*checkentry)(
|
||||||
|
const char *tablename,
|
||||||
|
const void *ip,
|
||||||
|
const struct xt_match *match,
|
||||||
|
void *matchinfo,
|
||||||
|
unsigned int matchinfosize,
|
||||||
|
unsigned int hook_mask,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_match *match,
|
||||||
|
void *matchinfo,
|
||||||
|
unsigned int matchinfosize,
|
||||||
|
);
|
||||||
|
|
||||||
|
target:
|
||||||
|
|
||||||
|
/* verdict */
|
||||||
|
unsigned int
|
||||||
|
(*target)(
|
||||||
|
struct sk_buff **pskb,
|
||||||
|
const struct net_device *in,
|
||||||
|
const struct net_device *out,
|
||||||
|
unsigned int hooknum,
|
||||||
|
const struct xt_target *target,
|
||||||
|
const void *targinfo,
|
||||||
|
void *userdata,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* error code */
|
||||||
|
int
|
||||||
|
(*checkentry)(
|
||||||
|
const char *tablename,
|
||||||
|
const void *entry,
|
||||||
|
const struct xt_target *target,
|
||||||
|
void *targinfo,
|
||||||
|
unsigned int targinfosize,
|
||||||
|
unsigned int hook_mask,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_target *target,
|
||||||
|
void *targinfo,
|
||||||
|
unsigned int targinfosize,
|
||||||
|
);
|
59
doc/api/2.6.19.c
Normal file
59
doc/api/2.6.19.c
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
match:
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
int
|
||||||
|
(*match)(
|
||||||
|
const struct sk_buff *skb,
|
||||||
|
const struct net_device *in,
|
||||||
|
const struct net_device *out,
|
||||||
|
const struct xt_match *match,
|
||||||
|
const void *matchinfo,
|
||||||
|
int offset,
|
||||||
|
unsigned int protoff,
|
||||||
|
int *hotdrop,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* error code */
|
||||||
|
int
|
||||||
|
(*checkentry)(
|
||||||
|
const char *tablename,
|
||||||
|
const void *ip,
|
||||||
|
const struct xt_match *match,
|
||||||
|
void *matchinfo,
|
||||||
|
unsigned int hook_mask,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_match *match,
|
||||||
|
void *matchinfo,
|
||||||
|
);
|
||||||
|
|
||||||
|
target:
|
||||||
|
|
||||||
|
/* verdict */
|
||||||
|
unsigned int
|
||||||
|
(*target)(
|
||||||
|
struct sk_buff **pskb,
|
||||||
|
const struct net_device *in,
|
||||||
|
const struct net_device *out,
|
||||||
|
unsigned int hooknum,
|
||||||
|
const struct xt_target *target,
|
||||||
|
const void *targinfo,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* error code */
|
||||||
|
int
|
||||||
|
(*checkentry)(
|
||||||
|
const char *tablename,
|
||||||
|
const void *entry,
|
||||||
|
const struct xt_target *target,
|
||||||
|
void *targinfo,
|
||||||
|
unsigned int hook_mask,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_target *target,
|
||||||
|
void *targinfo,
|
||||||
|
);
|
59
doc/api/2.6.23.c
Normal file
59
doc/api/2.6.23.c
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
match:
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*match)(
|
||||||
|
const struct sk_buff *skb,
|
||||||
|
const struct net_device *in,
|
||||||
|
const struct net_device *out,
|
||||||
|
const struct xt_match *match,
|
||||||
|
const void *matchinfo,
|
||||||
|
int offset,
|
||||||
|
unsigned int protoff,
|
||||||
|
bool *hotdrop,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const char *tablename,
|
||||||
|
const void *ip,
|
||||||
|
const struct xt_match *match,
|
||||||
|
void *matchinfo,
|
||||||
|
unsigned int hook_mask,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_match *match,
|
||||||
|
void *matchinfo,
|
||||||
|
);
|
||||||
|
|
||||||
|
target:
|
||||||
|
|
||||||
|
/* verdict */
|
||||||
|
unsigned int
|
||||||
|
(*target)(
|
||||||
|
struct sk_buff **pskb,
|
||||||
|
const struct net_device *in,
|
||||||
|
const struct net_device *out,
|
||||||
|
unsigned int hooknum,
|
||||||
|
const struct xt_target *target,
|
||||||
|
const void *targinfo,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const char *tablename,
|
||||||
|
const void *entry,
|
||||||
|
const struct xt_target *target,
|
||||||
|
void *targinfo,
|
||||||
|
unsigned int hook_mask,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_target *target,
|
||||||
|
void *targinfo,
|
||||||
|
);
|
59
doc/api/2.6.24.c
Normal file
59
doc/api/2.6.24.c
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
match:
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*match)(
|
||||||
|
const struct sk_buff *skb,
|
||||||
|
const struct net_device *in,
|
||||||
|
const struct net_device *out,
|
||||||
|
const struct xt_match *match,
|
||||||
|
const void *matchinfo,
|
||||||
|
int offset,
|
||||||
|
unsigned int protoff,
|
||||||
|
bool *hotdrop,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const char *tablename,
|
||||||
|
const void *ip,
|
||||||
|
const struct xt_match *match,
|
||||||
|
void *matchinfo,
|
||||||
|
unsigned int hook_mask,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_match *match,
|
||||||
|
void *matchinfo,
|
||||||
|
);
|
||||||
|
|
||||||
|
target:
|
||||||
|
|
||||||
|
/* verdict */
|
||||||
|
unsigned int
|
||||||
|
(*target)(
|
||||||
|
struct sk_buff *skb,
|
||||||
|
const struct net_device *in,
|
||||||
|
const struct net_device *out,
|
||||||
|
unsigned int hooknum,
|
||||||
|
const struct xt_target *target,
|
||||||
|
const void *targinfo,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const char *tablename,
|
||||||
|
const void *entry,
|
||||||
|
const struct xt_target *target,
|
||||||
|
void *targinfo,
|
||||||
|
unsigned int hook_mask,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_target *target,
|
||||||
|
void *targinfo,
|
||||||
|
);
|
39
doc/api/2.6.28.c
Normal file
39
doc/api/2.6.28.c
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
match:
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*match)(
|
||||||
|
const struct sk_buff *skb,
|
||||||
|
const struct xt_match_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_mtchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_mtdtor_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
target:
|
||||||
|
|
||||||
|
/* verdict */
|
||||||
|
unsigned int
|
||||||
|
(*target)(
|
||||||
|
struct sk_buff *skb,
|
||||||
|
const struct xt_target_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_tgchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_tgdtor_param *,
|
||||||
|
);
|
38
doc/api/2.6.31.c
Normal file
38
doc/api/2.6.31.c
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
match:
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*match)(
|
||||||
|
const struct sk_buff *skb,
|
||||||
|
const struct xt_match_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_mtchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_mtdtor_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
target:
|
||||||
|
|
||||||
|
unsigned int
|
||||||
|
(*target)(
|
||||||
|
struct sk_buff *skb,
|
||||||
|
const struct xt_target_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_tgchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_tgdtor_param *,
|
||||||
|
);
|
39
doc/api/2.6.32.c
Normal file
39
doc/api/2.6.32.c
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
match:
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*match)(
|
||||||
|
const struct sk_buff *skb,
|
||||||
|
const struct xt_match_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_mtchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_mtdtor_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
target:
|
||||||
|
|
||||||
|
/* verdict */
|
||||||
|
unsigned int
|
||||||
|
(*target)(
|
||||||
|
struct sk_buff *skb,
|
||||||
|
const struct xt_target_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_tgchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_tgdtor_param *,
|
||||||
|
);
|
39
doc/api/2.6.35.c
Normal file
39
doc/api/2.6.35.c
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
match:
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*match)(
|
||||||
|
const struct sk_buff *skb,
|
||||||
|
struct xt_action_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* error code */
|
||||||
|
int
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_mtchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_mtdtor_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
target:
|
||||||
|
|
||||||
|
/* verdict */
|
||||||
|
unsigned int
|
||||||
|
(*target)(
|
||||||
|
struct sk_buff *skb,
|
||||||
|
const struct xt_action_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* error code */
|
||||||
|
int
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_tgchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_tgdtor_param *,
|
||||||
|
);
|
39
doc/api/xt-a.c
Normal file
39
doc/api/xt-a.c
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
match:
|
||||||
|
|
||||||
|
/* true/false */
|
||||||
|
bool
|
||||||
|
(*match)(
|
||||||
|
const struct sk_buff *skb,
|
||||||
|
struct xt_action_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* error code */
|
||||||
|
int
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_mtchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_mtdtor_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
target:
|
||||||
|
|
||||||
|
/* verdict */
|
||||||
|
unsigned int
|
||||||
|
(*target)(
|
||||||
|
struct sk_buff **pskb,
|
||||||
|
const struct xt_action_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
/* error code */
|
||||||
|
int
|
||||||
|
(*checkentry)(
|
||||||
|
const struct xt_tgchk_param *,
|
||||||
|
);
|
||||||
|
|
||||||
|
void
|
||||||
|
(*destroy)(
|
||||||
|
const struct xt_tgdtor_param *,
|
||||||
|
);
|
Reference in New Issue
Block a user