You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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 */
|
|
|