Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 22311
b: refs/heads/master
c: 74ca4e5
h: refs/heads/master
i:
  22309: 86bf050
  22307: 82afa26
  22303: 89b33c7
v: v3
  • Loading branch information
Andrew Morton authored and David S. Miller committed Mar 21, 2006
1 parent 80f1269 commit 76e2c75
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 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: c8b2a6c50cacc98c924233a9e474c74c0370b6b8
refs/heads/master: 74ca4e5acd7d09a5133bb75043c2c474347f2c7e
10 changes: 8 additions & 2 deletions trunk/net/bridge/netfilter/ebtables.c
Original file line number Diff line number Diff line change
Expand Up @@ -1477,8 +1477,14 @@ static int do_ebt_get_ctl(struct sock *sk, int cmd, void __user *user, int *len)
}

static struct nf_sockopt_ops ebt_sockopts =
{ { NULL, NULL }, PF_INET, EBT_BASE_CTL, EBT_SO_SET_MAX + 1, do_ebt_set_ctl,
EBT_BASE_CTL, EBT_SO_GET_MAX + 1, do_ebt_get_ctl, 0, NULL
{
.pf = PF_INET,
.set_optmin = EBT_BASE_CTL,
.set_optmax = EBT_SO_SET_MAX + 1,
.set = do_ebt_set_ctl,
.get_optmin = EBT_BASE_CTL,
.get_optmax = EBT_SO_GET_MAX + 1,
.get = do_ebt_get_ctl,
};

static int __init init(void)
Expand Down

0 comments on commit 76e2c75

Please sign in to comment.