1 /*****************************************************************************
3 * Nagios plugins common include file
6 * Copyright (c) 1999 Ethan Galstad (nagios@nagios.org)
7 * Copyright (c) 2003-2007 Nagios Plugins Development Team
9 * Last Modified: $Date$
13 * This file contains common include files and defines used in many of
17 * This program is free software: you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation, either version 3 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program. If not, see <http://www.gnu.org/licenses/>.
32 *****************************************************************************/
38 /* This needs to be removed for Solaris servers, where 64 bit files, but 32 bit architecture
39 This needs to be done early on because subsequent system includes use _FILE_OFFSET_BITS
40 Cannot remove from config.h because is included by regex.c from lib/ */
41 #if __sun__ && !defined(_LP64) && _FILE_OFFSET_BITS == 64
42 #undef _FILE_OFFSET_BITS
45 #ifdef HAVE_FEATURES_H
49 #include <stdio.h> /* obligatory includes */
53 /* This block provides uintmax_t - should be reported to coreutils that this should be added to fsuage.h */
55 # include <inttypes.h>
62 # define UINTMAX_MAX ((uintmax_t) -1)
65 #include <limits.h> /* This is assumed true, because coreutils assume it too */
82 /* GET_NUMBER_OF_CPUS is a macro to return
83 number of CPUs, if we can get that data.
84 Use configure.in to test for various OS ways of
86 Will return -1 if cannot get data
88 #ifdef HAVE_SYSCONF__SC_NPROCESSORS_CONF
89 #define GET_NUMBER_OF_CPUS() sysconf(_SC_NPROCESSORS_CONF)
91 #define GET_NUMBER_OF_CPUS() -1
94 #ifdef TIME_WITH_SYS_TIME
95 # include <sys/time.h>
98 # ifdef HAVE_SYS_TIME_H
99 # include <sys/time.h>
105 #ifdef HAVE_SYS_TYPES_H
106 #include <sys/types.h>
109 #ifdef HAVE_SYS_SOCKET_H
110 #include <sys/socket.h>
125 #ifdef HAVE_SYS_POLL_H
126 # include "sys/poll.h"
136 # define strtol(a,b,c) atol((a))
140 # define strtoul(a,b,c) (unsigned long)atol((a))
143 /* SSL implementations */
144 #ifdef HAVE_GNUTLS_OPENSSL_H
145 # include <gnutls/openssl.h>
155 # ifdef HAVE_OPENSSL_SSL_H
156 # include <openssl/rsa.h>
157 # include <openssl/crypto.h>
158 # include <openssl/x509.h>
159 # include <openssl/pem.h>
160 # include <openssl/ssl.h>
161 # include <openssl/err.h>
177 /* AIX seems to have this defined somewhere else */
194 DEFAULT_SOCKET_TIMEOUT
= 10, /* timeout after 10 seconds */
195 MAX_INPUT_BUFFER
= 8192, /* max size of most buffers we use */
196 MAX_HOST_ADDRESS_LENGTH
= 256 /* max size of a host address */
201 * Internationalization
205 #define _(String) gettext (String)
208 # define textdomain(Domainname) /* empty */
209 # undef bindtextdomain
210 # define bindtextdomain(Domainname, Dirname) /* empty */
213 /* For non-GNU compilers to ignore __attribute__ */
215 # define __attribute__(x) /* do nothing */
218 #endif /* _COMMON_H_ */