2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2014-03-19 01:02:29 +01:00
|
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
2012-05-10 12:06:41 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
2012-05-11 13:33:57 +02:00
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
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>
|
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
|
|
|
|
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 */
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* UNIX_H */
|