![]() |
|
|||
0001 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 0002 #ifndef _LINUX_UN_H 0003 #define _LINUX_UN_H 0004 0005 #include <linux/socket.h> 0006 0007 #define UNIX_PATH_MAX 108 0008 0009 struct sockaddr_un { 0010 __kernel_sa_family_t sun_family; /* AF_UNIX */ 0011 char sun_path[UNIX_PATH_MAX]; /* pathname */ 0012 }; 0013 0014 #define SIOCUNIXFILE (SIOCPROTOPRIVATE + 0) /* open a socket file with O_PATH */ 0015 0016 #endif /* _LINUX_UN_H */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.1.0 LXR engine. The LXR team |
![]() ![]() |