Sign in
coral
/
linux-mtk
/
f269fdd1829acc5e53bf57b145003e5733133f2b
/
.
/
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 */