2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
|
|
|
|
* *
|
|
|
|
* 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>
|
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-04-01 09:48:52 +02:00
|
|
|
#include <pthread.h>
|
2012-04-03 19:49:56 +02:00
|
|
|
#include <signal.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-10 23:31:11 +01:00
|
|
|
#include <poll.h>
|
2013-02-02 00:28:00 +01:00
|
|
|
#include <glob.h>
|
2013-01-17 15:05:34 +01:00
|
|
|
#include <ltdl.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
|
|
|
|
|
2012-05-11 12:44:04 +02:00
|
|
|
#ifndef MAXPATHLEN
|
|
|
|
# define MAXPATHLEN PATH_MAX
|
|
|
|
#endif /* MAXPATHLEN */
|
2012-04-02 13:09:33 +02:00
|
|
|
|
2013-02-14 10:53:34 +01:00
|
|
|
#if HAVE___ATTRIBUTE__
|
|
|
|
# define I2_EXPORT __attribute__ ((visibility ("default")))
|
|
|
|
# define I2_IMPORT __attribute__ ((visibility ("default")))
|
|
|
|
#else /* HAVE___ATTRIBUTE__ */
|
|
|
|
/* default visibility takes care of exported symbols if we don't have __attribute__ */
|
|
|
|
# define I2_EXPORT
|
|
|
|
# define I2_IMPORT
|
|
|
|
#endif /* HAVE___ATTRIBUTE__ */
|
2012-04-02 08:56:30 +02:00
|
|
|
#endif /* UNIX_H */
|