• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * This file is auto-generated. Modifications will be lost.
3  *
4  * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
5  * for more information.
6  */
7 #ifndef _LINUX_UN_H
8 #define _LINUX_UN_H
9 #include <linux/socket.h>
10 #define UNIX_PATH_MAX 108
11 struct sockaddr_un {
12   __kernel_sa_family_t sun_family;
13   char sun_path[UNIX_PATH_MAX];
14 };
15 #define SIOCUNIXFILE (SIOCPROTOPRIVATE + 0)
16 #endif
17