blob: 425c8012450f851bf737780c1703609ac3e1025f [file] [log] [blame]
Adam Barth57eacf52020-11-04 00:38:09 +00001#ifndef SYSROOT_SYS_UN_H_
2#define SYSROOT_SYS_UN_H_
Doug Horn1427b6a2018-12-11 13:19:16 -08003
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <features.h>
9
10#define __NEED_sa_family_t
11#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
12#define __NEED_size_t
13#endif
14
15#include <bits/alltypes.h>
16
17struct sockaddr_un {
Adam Barth57eacf52020-11-04 00:38:09 +000018 sa_family_t sun_family;
19 char sun_path[108];
Doug Horn1427b6a2018-12-11 13:19:16 -080020};
21
22#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
23size_t strlen(const char*);
24#define SUN_LEN(s) (2 + strlen((s)->sun_path))
25#endif
26
27#ifdef __cplusplus
28}
29#endif
Adam Barth57eacf52020-11-04 00:38:09 +000030
31#endif // SYSROOT_SYS_UN_H_