Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
unix_diag.h
Go to the documentation of this file.
1 #ifndef __UNIX_DIAG_H__
2 #define __UNIX_DIAG_H__
3 
4 #include <linux/types.h>
5 
6 struct unix_diag_req {
14 };
15 
16 #define UDIAG_SHOW_NAME 0x00000001 /* show name (not path) */
17 #define UDIAG_SHOW_VFS 0x00000002 /* show VFS inode info */
18 #define UDIAG_SHOW_PEER 0x00000004 /* show peer socket info */
19 #define UDIAG_SHOW_ICONS 0x00000008 /* show pending connections */
20 #define UDIAG_SHOW_RQLEN 0x00000010 /* show skb receive queue len */
21 #define UDIAG_SHOW_MEMINFO 0x00000020 /* show memory info of a socket */
22 
23 struct unix_diag_msg {
28 
31 };
32 
33 enum {
40 
42 };
43 
44 struct unix_diag_vfs {
47 };
48 
52 };
53 
54 #endif