2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 12:06:41 +02:00
|
|
|
|
2012-04-02 08:56:30 +02:00
|
|
|
#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>
|
2012-04-01 09:48:52 +02:00
|
|
|
#include <fcntl.h>
|
2012-03-28 13:24:49 +02:00
|
|
|
#include <sys/socket.h>
|
2013-11-24 00:27:10 +01:00
|
|
|
#include <sys/types.h>
|
2012-11-23 12:34:06 +01:00
|
|
|
#include <sys/un.h>
|
2012-04-04 12:22:46 +02:00
|
|
|
#include <netdb.h>
|
2012-03-29 20:03:29 +02:00
|
|
|
#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>
|
2012-07-12 17:03:34 +02:00
|
|
|
#include <sys/file.h>
|
2012-08-13 12:39:37 +02:00
|
|
|
#include <sys/wait.h>
|
2013-02-02 00:28:00 +01:00
|
|
|
#include <glob.h>
|
2013-03-07 19:44:39 +01:00
|
|
|
#include <dlfcn.h>
|
2013-11-22 09:03:52 +01:00
|
|
|
#include <sys/stat.h>
|
2013-11-29 10:39:48 +01:00
|
|
|
#include <dirent.h>
|
2013-12-05 11:04:47 +01:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
2014-09-06 02:11:34 +02:00
|
|
|
#include <strings.h>
|
2018-01-18 10:54:49 +01:00
|
|
|
#include <errno.h>
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-04-02 10:26:38 +02:00
|
|
|
typedef int SOCKET;
|
2012-03-28 13:24:49 +02:00
|
|
|
#define INVALID_SOCKET (-1)
|
|
|
|
|
2012-09-25 15:45:19 +02:00
|
|
|
#define closesocket close
|
2012-03-29 13:15:54 +02:00
|
|
|
#define ioctlsocket ioctl
|
|
|
|
|
2014-09-06 02:26:42 +02:00
|
|
|
#ifndef SUN_LEN
|
|
|
|
/* TODO: Ideally this should take into the account how
|
2017-12-19 15:50:05 +01:00
|
|
|
* long the socket path really is.
|
|
|
|
*/
|
2014-09-06 02:26:42 +02:00
|
|
|
# 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 */
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* UNIX_H */
|