Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_exynos9820
/
0bd2af46839ad6262d25714a6ec0365db9d6b98f
/
.
/
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 */