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 *****************************************************************************/
39 #ifdef HAVE_FEATURES_H
43 #include <stdio.h> /* obligatory includes */
47 /* This block provides uintmax_t - should be reported to coreutils that this should be added to fsuage.h */
49 # include <inttypes.h>
56 # define UINTMAX_MAX ((uintmax_t) -1)
59 #include <limits.h> /* This is assumed true, because coreutils assume it too */
76 /* GET_NUMBER_OF_CPUS is a macro to return
77 number of CPUs, if we can get that data.
78 Use configure.in to test for various OS ways of
80 Will return -1 if cannot get data
82 #ifdef HAVE_SYSCONF__SC_NPROCESSORS_CONF
83 #define GET_NUMBER_OF_CPUS() sysconf(_SC_NPROCESSORS_CONF)
85 #define GET_NUMBER_OF_CPUS() -1
88 #ifdef TIME_WITH_SYS_TIME
89 # include <sys/time.h>
92 # ifdef HAVE_SYS_TIME_H
93 # include <sys/time.h>
99 #ifdef HAVE_SYS_TYPES_H
100 #include <sys/types.h>
103 #ifdef HAVE_SYS_SOCKET_H
104 #include <sys/socket.h>
119 #ifdef HAVE_SYS_POLL_H
120 # include "sys/poll.h"
130 # define strtol(a,b,c) atol((a))
134 # define strtoul(a,b,c) (unsigned long)atol((a))
137 /* SSL implementations */
138 #ifdef HAVE_GNUTLS_OPENSSL_H
139 # include <gnutls/openssl.h>
149 # ifdef HAVE_OPENSSL_SSL_H
150 # include <openssl/rsa.h>
151 # include <openssl/crypto.h>
152 # include <openssl/x509.h>
153 # include <openssl/pem.h>
154 # include <openssl/ssl.h>
155 # include <openssl/err.h>
171 /* AIX seems to have this defined somewhere else */
188 DEFAULT_SOCKET_TIMEOUT
= 10, /* timeout after 10 seconds */
189 MAX_INPUT_BUFFER
= 8192, /* max size of most buffers we use */
190 MAX_HOST_ADDRESS_LENGTH
= 256 /* max size of a host address */
195 * Internationalization
199 #define _(String) gettext (String)
202 # define textdomain(Domainname) /* empty */
203 # undef bindtextdomain
204 # define bindtextdomain(Domainname, Dirname) /* empty */
207 /* For non-GNU compilers to ignore __attribute__ */
209 # define __attribute__(x) /* do nothing */
212 #endif /* _COMMON_H_ */