2023-05-26 22:21:07 +03:00
|
|
|
#ifndef _SYS_UN_H
|
|
|
|
#define _SYS_UN_H 1
|
|
|
|
|
|
|
|
// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_un.h.html
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
|
|
|
#include <bits/types/sa_family_t.h>
|
|
|
|
|
|
|
|
struct sockaddr_un
|
|
|
|
{
|
2024-02-07 02:13:21 +02:00
|
|
|
sa_family_t sun_family; /* Address family. */
|
|
|
|
char sun_path[FILENAME_MAX]; /* Socket pathname. */
|
2023-05-26 22:21:07 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif
|