Commit 87d5c18c authored by Pablo Neira's avatar Pablo Neira Committed by David S. Miller

netfilter: cleanup struct nf_hook_ops indentation

Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a104a6b3
...@@ -79,16 +79,16 @@ typedef unsigned int nf_hookfn(const struct nf_hook_ops *ops, ...@@ -79,16 +79,16 @@ typedef unsigned int nf_hookfn(const struct nf_hook_ops *ops,
const struct nf_hook_state *state); const struct nf_hook_state *state);
struct nf_hook_ops { struct nf_hook_ops {
struct list_head list; struct list_head list;
/* User fills in from here down. */ /* User fills in from here down. */
nf_hookfn *hook; nf_hookfn *hook;
struct module *owner; struct module *owner;
void *priv; void *priv;
u_int8_t pf; u_int8_t pf;
unsigned int hooknum; unsigned int hooknum;
/* Hooks are ordered in ascending priority. */ /* Hooks are ordered in ascending priority. */
int priority; int priority;
}; };
struct nf_sockopt_ops { struct nf_sockopt_ops {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment