Files
linux-apfs/include/linux/un.h
T

12 lines
203 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#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 */