mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
sock_diag: Initial skeleton
When receiving the SOCK_DIAG_BY_FAMILY message we have to find the handler for provided family and pass the nl message to it. This patch describes an infrastructure to work with such nandlers and implements stubs for AF_INET(6) ones. Signed-off-by: Pavel Emelyanov <xemul@parallels.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f13c95f0e2
commit
d366477a52
23
include/linux/sock_diag.h
Normal file
23
include/linux/sock_diag.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef __SOCK_DIAG_H__
|
||||
#define __SOCK_DIAG_H__
|
||||
struct sk_buff;
|
||||
struct nlmsghdr;
|
||||
|
||||
struct sock_diag_req {
|
||||
__u8 sdiag_family;
|
||||
__u8 sdiag_protocol;
|
||||
};
|
||||
|
||||
struct sock_diag_handler {
|
||||
__u8 family;
|
||||
int (*dump)(struct sk_buff *skb, struct nlmsghdr *nlh);
|
||||
};
|
||||
|
||||
int sock_diag_register(struct sock_diag_handler *h);
|
||||
void sock_diag_unregister(struct sock_diag_handler *h);
|
||||
|
||||
void sock_diag_register_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
|
||||
void sock_diag_unregister_inet_compat(int (*fn)(struct sk_buff *skb, struct nlmsghdr *nlh));
|
||||
|
||||
extern struct sock *sock_diag_nlsk;
|
||||
#endif
|
||||
Reference in New Issue
Block a user