1
0

[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>
This commit is contained in:
Patrick McHardy
2007-12-17 22:39:08 -08:00
committed by David S. Miller
parent f01ffbd6e7
commit 7b2f9631e7
7 changed files with 13 additions and 13 deletions

View File

@@ -43,8 +43,8 @@ struct nf_logger {
};
/* Function to register/unregister log function. */
int nf_log_register(int pf, struct nf_logger *logger);
void nf_log_unregister(struct nf_logger *logger);
int nf_log_register(int pf, const struct nf_logger *logger);
void nf_log_unregister(const struct nf_logger *logger);
void nf_log_unregister_pf(int pf);
/* Calls the registered backend logging function */
@@ -53,7 +53,7 @@ void nf_log_packet(int pf,
const struct sk_buff *skb,
const struct net_device *in,
const struct net_device *out,
struct nf_loginfo *li,
const struct nf_loginfo *li,
const char *fmt, ...);
#endif /* _NF_LOG_H */