Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / include / linux / sock_diag.h
blob54f91d35e5fd76f13b94d8297b10be6642e07887
1 #ifndef __SOCK_DIAG_H__
2 #define __SOCK_DIAG_H__
4 #include <linux/user_namespace.h>
5 #include <uapi/linux/sock_diag.h>
7 struct sk_buff;
8 struct nlmsghdr;
9 struct sock;
11 struct sock_diag_handler {
12 __u8 family;
13 int (*dump)(struct sk_buff *skb, struct nlmsghdr *nlh);
16 int sock_diag_register(const struct sock_diag_handler *h);
17 void sock_diag_unregister(const struct sock_diag_handler *h);
19 void sock_diag_register_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
20 void sock_diag_unregister_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
22 int sock_diag_check_cookie(void *sk, __u32 *cookie);
23 void sock_diag_save_cookie(void *sk, __u32 *cookie);
25 int sock_diag_put_meminfo(struct sock *sk, struct sk_buff *skb, int attr);
26 int sock_diag_put_filterinfo(struct user_namespace *user_ns, struct sock *sk,
27 struct sk_buff *skb, int attrtype);
29 #endif