1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux << 2 #ifndef _LINUX_UN_H 1 #ifndef _LINUX_UN_H 3 #define _LINUX_UN_H 2 #define _LINUX_UN_H 4 3 5 #include <linux/socket.h> 4 #include <linux/socket.h> 6 5 7 #define UNIX_PATH_MAX 108 6 #define UNIX_PATH_MAX 108 8 7 9 struct sockaddr_un { 8 struct sockaddr_un { 10 __kernel_sa_family_t sun_family; /* AF 9 __kernel_sa_family_t sun_family; /* AF_UNIX */ 11 char sun_path[UNIX_PATH_MAX]; /* pat 10 char sun_path[UNIX_PATH_MAX]; /* pathname */ 12 }; 11 }; 13 << 14 #define SIOCUNIXFILE (SIOCPROTOPRIVATE + 0) /* << 15 12 16 #endif /* _LINUX_UN_H */ 13 #endif /* _LINUX_UN_H */ 17 14
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.