Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
linux-kselftest
/
7835e98b2e3c66dba79cb0ff8ebb90a2fe030c29
/
.
/
include
/
linux
/
un.h
blob: 45561c564b8e004bde76a069ce9823f5085226dd [
file
] [
log
] [
blame
]
#ifndef
_LINUX_UN_H
#define
_LINUX_UN_H
#define
UNIX_PATH_MAX
108
struct
sockaddr_un
{
sa_family_t
sun_family
;
/* AF_UNIX */
char
sun_path
[
UNIX_PATH_MAX
];
/* pathname */
};
#endif
/* _LINUX_UN_H */