1 /* 2 * This header was generated from the Linux kernel headers by update_headers.py, 3 * to provide necessary information from kernel to userspace, such as constants, 4 * structures, and macros, and thus, contains no copyrightable information. 5 */ 6 #ifndef _LINUX_UN_H 7 #define _LINUX_UN_H 8 #include <linux/socket.h> 9 #define UNIX_PATH_MAX 108 10 struct sockaddr_un { 11 __kernel_sa_family_t sun_family; 12 char sun_path[UNIX_PATH_MAX]; 13 }; 14 #define SIOCUNIXFILE (SIOCPROTOPRIVATE + 0) 15 #endif 16