-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Pavel Emelyanov
authored and
David S. Miller
committed
Dec 6, 2011
1 parent
f13c95f
commit d366477
Showing
2 changed files
with
123 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters