-
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.
- Loading branch information
Pavel Emelyanov
authored and
David S. Miller
committed
Dec 6, 2011
1 parent
f05db47
commit db27484
Showing
3 changed files
with
124 additions
and
3 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f13c95f0e255e6d21762259875295cc212e6bc32 | ||
refs/heads/master: d366477a52f1df29fa066ffb18e4e6101ee2ad04 |
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