aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2007-12-18 01:39:08 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 17:58:59 -0500
commit7b2f9631e789c3e7d59201c21f09a24cd6ce3b1a (patch)
tree83a7ded3b78af85b5a1923fb15165248e99b4f7a /include
parentf01ffbd6e7d001ccf9168b33507958a51ce0ffcf (diff)
[NETFILTER]: nf_log: constify struct nf_logger and nf_log_packet loginfo arg
Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/net/netfilter/nf_log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/netfilter/nf_log.h b/include/net/netfilter/nf_log.h
index f0426e59f229..037e82403f91 100644
--- a/include/net/netfilter/nf_log.h
+++ b/include/net/netfilter/nf_log.h
@@ -43,8 +43,8 @@ struct nf_logger {
43}; 43};
44 44
45/* Function to register/unregister log function. */ 45/* Function to register/unregister log function. */
46int nf_log_register(int pf, struct nf_logger *logger); 46int nf_log_register(int pf, const struct nf_logger *logger);
47void nf_log_unregister(struct nf_logger *logger); 47void nf_log_unregister(const struct nf_logger *logger);
48void nf_log_unregister_pf(int pf); 48void nf_log_unregister_pf(int pf);
49 49
50/* Calls the registered backend logging function */ 50/* Calls the registered backend logging function */
@@ -53,7 +53,7 @@ void nf_log_packet(int pf,
53 const struct sk_buff *skb, 53 const struct sk_buff *skb,
54 const struct net_device *in, 54 const struct net_device *in,
55 const struct net_device *out, 55 const struct net_device *out,
56 struct nf_loginfo *li, 56 const struct nf_loginfo *li,
57 const char *fmt, ...); 57 const char *fmt, ...);
58 58
59#endif /* _NF_LOG_H */ 59#endif /* _NF_LOG_H */