Rudiments
unixsocketutilincludes.h
1 // Copyright (c) 1999-2018 David Muse
2 // See the COPYING file for more information.
3 
4 #include <rudiments/private/dll.h>
5 #include <rudiments/private/inttypes.h>
6 
7 #include <sys/types.h>
8 #ifdef RUDIMENTS_HAVE_SYS_PARAM_H
9  #include <sys/param.h>
10 #endif
11 #ifdef RUDIMENTS_HAVE_SYS_UN_H
12  #include <sys/un.h>
13 #endif
14 
15 #ifndef RUDIMENTS_HAVE_SOCKADDR_UN
16  struct sockaddr_un {
17  int16_t sun_family;
18  char sun_path[512];
19  };
20 #endif
21 
22 class unixsocketutilprivate;
Definition: unixsocketutilincludes.h:16