2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _SYS_UN_H
|
|
|
|
#define _SYS_UN_H
|
|
|
|
|
2013-08-22 01:46:57 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <features.h>
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#define __NEED_sa_family_t
|
2013-08-22 01:46:57 +00:00
|
|
|
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
|
|
#define __NEED_size_t
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#include <bits/alltypes.h>
|
|
|
|
|
|
|
|
struct sockaddr_un
|
|
|
|
{
|
|
|
|
sa_family_t sun_family;
|
|
|
|
char sun_path[108];
|
|
|
|
};
|
|
|
|
|
2013-08-22 01:46:57 +00:00
|
|
|
#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
|
|
|
|
size_t strlen(const char *);
|
|
|
|
#define SUN_LEN(s) (2+strlen((s)->sun_path))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#endif
|