Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 46971
b: refs/heads/master
c: 9934e81
h: refs/heads/master
i:
  46969: 8f5573f
  46967: 5cbb7ac
v: v3
  • Loading branch information
Patrick McHardy authored and David S. Miller committed Feb 8, 2007
1 parent 7a2f25e commit 0808675
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 58 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c3e79c05b45c3d6115d8c46e3012939c71573f13
refs/heads/master: 9934e81c8c4981342dab3e386aff5d4499bea0d2
19 changes: 19 additions & 0 deletions trunk/include/linux/netfilter_ipv6/ip6_tables.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,25 @@ struct ip6t_entry
unsigned char elems[0];
};

/* Standard entry */
struct ip6t_standard
{
struct ip6t_entry entry;
struct ip6t_standard_target target;
};

struct ip6t_error_target
{
struct ip6t_entry_target target;
char errorname[IP6T_FUNCTION_MAXNAMELEN];
};

struct ip6t_error
{
struct ip6t_entry entry;
struct ip6t_error_target target;
};

/*
* New IP firewall options for [gs]etsockopt at the RAW IP level.
* Unlike BSD Linux inherits IP options so you don't have to use
Expand Down
19 changes: 0 additions & 19 deletions trunk/net/ipv6/netfilter/ip6table_filter.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,6 @@ MODULE_DESCRIPTION("ip6tables filter table");

#define FILTER_VALID_HOOKS ((1 << NF_IP6_LOCAL_IN) | (1 << NF_IP6_FORWARD) | (1 << NF_IP6_LOCAL_OUT))

/* Standard entry. */
struct ip6t_standard
{
struct ip6t_entry entry;
struct ip6t_standard_target target;
};

struct ip6t_error_target
{
struct ip6t_entry_target target;
char errorname[IP6T_FUNCTION_MAXNAMELEN];
};

struct ip6t_error
{
struct ip6t_entry entry;
struct ip6t_error_target target;
};

static struct
{
struct ip6t_replace repl;
Expand Down
19 changes: 0 additions & 19 deletions trunk/net/ipv6/netfilter/ip6table_mangle.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,6 @@ MODULE_DESCRIPTION("ip6tables mangle table");
#define DEBUGP(x, args...)
#endif

/* Standard entry. */
struct ip6t_standard
{
struct ip6t_entry entry;
struct ip6t_standard_target target;
};

struct ip6t_error_target
{
struct ip6t_entry_target target;
char errorname[IP6T_FUNCTION_MAXNAMELEN];
};

struct ip6t_error
{
struct ip6t_entry entry;
struct ip6t_error_target target;
};

static struct
{
struct ip6t_replace repl;
Expand Down
19 changes: 0 additions & 19 deletions trunk/net/ipv6/netfilter/ip6table_raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,6 @@
#define DEBUGP(x, args...)
#endif

/* Standard entry. */
struct ip6t_standard
{
struct ip6t_entry entry;
struct ip6t_standard_target target;
};

struct ip6t_error_target
{
struct ip6t_entry_target target;
char errorname[IP6T_FUNCTION_MAXNAMELEN];
};

struct ip6t_error
{
struct ip6t_entry entry;
struct ip6t_error_target target;
};

static struct
{
struct ip6t_replace repl;
Expand Down

0 comments on commit 0808675

Please sign in to comment.