icinga2/lib/base/unix.hpp

50 lines
979 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef UNIX_H
#define UNIX_H
2012-03-28 13:24:49 +02:00
2012-04-02 19:38:04 +02:00
#include <limits.h>
2012-03-28 13:24:49 +02:00
#include <unistd.h>
#include <fcntl.h>
2012-03-28 13:24:49 +02:00
#include <sys/socket.h>
#include <sys/types.h>
2012-11-23 12:34:06 +01:00
#include <sys/un.h>
#include <netdb.h>
#include <sys/ioctl.h>
2012-03-28 13:24:49 +02:00
#include <netinet/in.h>
#include <arpa/inet.h>
2012-07-08 21:24:20 +02:00
#include <libgen.h>
2012-07-10 13:31:17 +02:00
#include <syslog.h>
#include <sys/file.h>
2012-08-13 12:39:37 +02:00
#include <sys/wait.h>
#include <glob.h>
#include <dlfcn.h>
#include <sys/stat.h>
#include <dirent.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <strings.h>
2018-01-18 10:54:49 +01:00
#include <errno.h>
2012-03-28 13:24:49 +02:00
typedef int SOCKET;
2012-03-28 13:24:49 +02:00
#define INVALID_SOCKET (-1)
#define closesocket close
#define ioctlsocket ioctl
#ifndef SUN_LEN
/* TODO: Ideally this should take into the account how
* long the socket path really is.
*/
# define SUN_LEN(sun) (sizeof(sockaddr_un))
#endif /* SUN_LEN */
2014-09-02 17:27:16 +02:00
#ifndef PATH_MAX
# define PATH_MAX 1024
#endif /* PATH_MAX */
2012-05-11 12:44:04 +02:00
#ifndef MAXPATHLEN
# define MAXPATHLEN PATH_MAX
#endif /* MAXPATHLEN */
#endif /* UNIX_H */