diff options
author | Patrick McHardy <kaber@trash.net> | 2007-12-05 04:23:57 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 17:56:09 -0500 |
commit | e3ac5298159c5286cef86f0865d4fa6a606bd391 (patch) | |
tree | e2d398667438d5e9e4cb688af03a37c6198e2e72 /include | |
parent | fb46990dba94866462e90623e183d02ec591cf8f (diff) |
[NETFILTER]: nf_queue: make queue_handler const
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/linux/netfilter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/netfilter.h b/include/linux/netfilter.h index 9bfc7d4f5868..c2c3fafa5fd0 100644 --- a/include/linux/netfilter.h +++ b/include/linux/netfilter.h | |||
@@ -281,11 +281,11 @@ struct nf_queue_handler { | |||
281 | void *data; | 281 | void *data; |
282 | char *name; | 282 | char *name; |
283 | }; | 283 | }; |
284 | extern int nf_register_queue_handler(int pf, | 284 | extern int nf_register_queue_handler(int pf, |
285 | struct nf_queue_handler *qh); | 285 | const struct nf_queue_handler *qh); |
286 | extern int nf_unregister_queue_handler(int pf, | 286 | extern int nf_unregister_queue_handler(int pf, |
287 | struct nf_queue_handler *qh); | 287 | const struct nf_queue_handler *qh); |
288 | extern void nf_unregister_queue_handlers(struct nf_queue_handler *qh); | 288 | extern void nf_unregister_queue_handlers(const struct nf_queue_handler *qh); |
289 | extern void nf_reinject(struct sk_buff *skb, | 289 | extern void nf_reinject(struct sk_buff *skb, |
290 | struct nf_info *info, | 290 | struct nf_info *info, |
291 | unsigned int verdict); | 291 | unsigned int verdict); |