Merge branches 'for-3.11/battery', 'for-3.11/elo', 'for-3.11/holtek' and 'for-3.11...
[linux-2.6-block.git] / include / linux / sock_diag.h
CommitLineData
d366477a
PE
1#ifndef __SOCK_DIAG_H__
2#define __SOCK_DIAG_H__
e7c466e5 3
e8d9612c 4#include <linux/user_namespace.h>
607ca46e 5#include <uapi/linux/sock_diag.h>
e7c466e5 6
e6fe2371
PE
7struct sk_buff;
8struct nlmsghdr;
5d2e5f27 9struct sock;
e6fe2371 10
d366477a
PE
11struct sock_diag_handler {
12 __u8 family;
13 int (*dump)(struct sk_buff *skb, struct nlmsghdr *nlh);
14};
15
8dcf01fc
SW
16int sock_diag_register(const struct sock_diag_handler *h);
17void sock_diag_unregister(const struct sock_diag_handler *h);
d366477a
PE
18
19void sock_diag_register_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
20void sock_diag_unregister_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
21
f65c1b53
PE
22int sock_diag_check_cookie(void *sk, __u32 *cookie);
23void sock_diag_save_cookie(void *sk, __u32 *cookie);
24
5d2e5f27 25int sock_diag_put_meminfo(struct sock *sk, struct sk_buff *skb, int attr);
e8d9612c
ND
26int sock_diag_put_filterinfo(struct user_namespace *user_ns, struct sock *sk,
27 struct sk_buff *skb, int attrtype);
5d2e5f27 28
d366477a 29#endif