mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 00:51:02 +07:00
12 lines
203 B
C
12 lines
203 B
C
|
#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 */
|