Merge branch 'tipc-Dec29-2011' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg...
[deliverable/linux.git] / include / linux / sock_diag.h
CommitLineData
d366477a
PE
1#ifndef __SOCK_DIAG_H__
2#define __SOCK_DIAG_H__
e7c466e5
PE
3
4#define SOCK_DIAG_BY_FAMILY 20
5
d366477a
PE
6struct sk_buff;
7struct nlmsghdr;
8
9struct sock_diag_req {
10 __u8 sdiag_family;
11 __u8 sdiag_protocol;
12};
13
14struct sock_diag_handler {
15 __u8 family;
16 int (*dump)(struct sk_buff *skb, struct nlmsghdr *nlh);
17};
18
19int sock_diag_register(struct sock_diag_handler *h);
20void sock_diag_unregister(struct sock_diag_handler *h);
21
22void sock_diag_register_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
23void sock_diag_unregister_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
24
f65c1b53
PE
25int sock_diag_check_cookie(void *sk, __u32 *cookie);
26void sock_diag_save_cookie(void *sk, __u32 *cookie);
27
d366477a
PE
28extern struct sock *sock_diag_nlsk;
29#endif
This page took 0.03657 seconds and 5 git commands to generate.