diff options
author | Jeremy T. Bouse <undrgrid@users.sourceforge.net> | 2003-03-13 06:51:18 (GMT) |
---|---|---|
committer | Jeremy T. Bouse <undrgrid@users.sourceforge.net> | 2003-03-13 06:51:18 (GMT) |
commit | f6cc0cf400832ececffad4e90b693bf2c6471161 (patch) | |
tree | b6be7e055c079111220549d6f69a1abd532a1999 /plugins/utils.h.in | |
parent | ba477f3df87749e51a1ea9d7f5038755ae8201cb (diff) | |
download | monitoring-plugins-f6cc0cf400832ececffad4e90b693bf2c6471161.tar.gz |
Updated cvs ignore files to reflect changes
Moved header files from being ran through configure to standard
Removed auto-tools scripts that get added by automake
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@417 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/utils.h.in')
-rw-r--r-- | plugins/utils.h.in | 105 |
1 files changed, 0 insertions, 105 deletions
diff --git a/plugins/netutils.h.in b/plugins/netutils.h.in deleted file mode 100644 index 69cf278..0000000 --- a/plugins/netutils.h.in +++ /dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Nagios plugins net utilities include file | ||
4 | * | ||
5 | * License: GPL | ||
6 | * Copyright (c) 1999 Ethan Galstad (nagios@nagios.org) | ||
7 | * | ||
8 | * Last Modified: $Date$ | ||
9 | * | ||
10 | * Description: | ||
11 | * | ||
12 | * This file contains common include files and function definitions | ||
13 | * used in many of the plugins. | ||
14 | * | ||
15 | * License Information: | ||
16 | * | ||
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 2 of the License, or | ||
20 | * (at your option) any later version. | ||
21 | * | ||
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. | ||
26 | * | ||
27 | * You should have received a copy of the GNU General Public License | ||
28 | * along with this program; if not, write to the Free Software | ||
29 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
30 | * | ||
31 | ******************************************************************************/ | ||
32 | |||
33 | #undef STDC_HEADERS | ||
34 | #undef HAVE_STRINGS_H | ||
35 | #undef HAVE_STRING_H | ||
36 | |||
37 | #include "config.h" | ||
38 | #include "common.h" | ||
39 | #include <netinet/in.h> | ||
40 | #include <arpa/inet.h> | ||
41 | |||
42 | void socket_timeout_alarm_handler (int); | ||
43 | |||
44 | int process_tcp_request2 (char *address, int port, char *sbuffer, | ||
45 | char *rbuffer, int rsize); | ||
46 | int process_tcp_request (char *address, int port, char *sbuffer, | ||
47 | char *rbuffer, int rsize); | ||
48 | int process_udp_request (char *address, int port, char *sbuffer, | ||
49 | char *rbuffer, int rsize); | ||
50 | int process_request (char *address, int port, char *proto, char *sbuffer, | ||
51 | char *rbuffer, int rsize); | ||
52 | |||
53 | int my_tcp_connect (char *address, int port, int *sd); | ||
54 | int my_udp_connect (char *address, int port, int *sd); | ||
55 | int my_connect (char *address, int port, int *sd, int proto); | ||
56 | |||
57 | int socket_timeout = DEFAULT_SOCKET_TIMEOUT; | ||
diff --git a/plugins/utils.h.in b/plugins/utils.h.in deleted file mode 100644 index 89ada6f..0000000 --- a/plugins/utils.h.in +++ /dev/null | |||
@@ -1,105 +0,0 @@ | |||
1 | /* header file for nagios plugins utils.c */ | ||
2 | |||
3 | /* this file should be included in all plugins */ | ||
4 | |||
5 | /* The purpose of this package is to provide safer alternantives to C | ||
6 | functions that might otherwise be vulnerable to hacking. This | ||
7 | currently includes a standard suite of validation routines to be sure | ||
8 | that an string argument acually converts to its intended type and a | ||
9 | suite of string handling routine that do their own memory management | ||
10 | in order to resist overflow attacks. In addition, a few functions are | ||
11 | provided to standardize version and error reporting accross the entire | ||
12 | suite of plugins. */ | ||
13 | |||
14 | /* Standardize version information, termination */ | ||
15 | |||
16 | char *my_basename (char *); | ||
17 | void support (void); | ||
18 | char *clean_revstring (const char *revstring); | ||
19 | void print_revision (const char *, const char *); | ||
20 | void terminate (int result, char *msg, ...); | ||
21 | extern RETSIGTYPE timeout_alarm_handler (int); | ||
22 | |||
23 | /* Handle timeouts */ | ||
24 | |||
25 | time_t start_time, end_time; | ||
26 | int timeout_interval = DEFAULT_SOCKET_TIMEOUT; | ||
27 | |||
28 | /* Test input types */ | ||
29 | |||
30 | int is_host (char *); | ||
31 | int is_addr (char *); | ||
32 | int is_inet_addr (char *); | ||
33 | #ifdef USE_IPV6 | ||
34 | int is_inet6_addr (char *); | ||
35 | #endif | ||
36 | int is_hostname (char *); | ||
37 | |||
38 | int is_integer (char *); | ||
39 | int is_intpos (char *); | ||
40 | int is_intneg (char *); | ||
41 | int is_intnonneg (char *); | ||
42 | int is_intpercent (char *); | ||
43 | |||
44 | int is_numeric (char *); | ||
45 | int is_positive (char *); | ||
46 | int is_negative (char *); | ||
47 | int is_nonnegative (char *); | ||
48 | int is_percentage (char *); | ||
49 | |||
50 | int is_option (char *); | ||
51 | |||
52 | /* generalized timer that will do milliseconds if available */ | ||
53 | #ifndef HAVE_STRUCT_TIMEVAL | ||
54 | struct timeval { | ||
55 | long tv_sec; /* seconds */ | ||
56 | long tv_usec; /* microseconds */ | ||
57 | }; | ||
58 | #endif | ||
59 | |||
60 | #ifndef HAVE_GETTIMEOFDAY | ||
61 | int gettimeofday(struct timeval *tv, struct timezone *tz); | ||
62 | #endif | ||
63 | |||
64 | double delta_time (struct timeval tv); | ||
65 | |||
66 | /* Handle strings safely */ | ||
67 | |||
68 | void strip (char *buffer); | ||
69 | char *strscpy (char *dest, char *src); | ||
70 | char *strscat (char *dest, char *src); | ||
71 | char *strnl (char *str); | ||
72 | char *ssprintf (char *str, const char *fmt, ...); /* deprecate for asprintf */ | ||
73 | char *strpcpy (char *dest, const char *src, const char *str); | ||
74 | char *strpcat (char *dest, const char *src, const char *str); | ||
75 | |||
76 | int max_state (int a, int b); | ||
77 | |||
78 | void usage (char *msg); | ||
79 | void usage2(char *msg, char *arg); | ||
80 | void usage3(char *msg, char arg); | ||
81 | |||
82 | |||
83 | #define max(a,b) (((a)>(b))?(a):(b)) | ||
84 | |||
85 | #define state_text(a) \ | ||
86 | (a)==0?"OK":\ | ||
87 | (a)==1?"WARNING":\ | ||
88 | (a)==2?"CRITICAL":\ | ||
89 | (a)==3?"UNKNOWN":\ | ||
90 | (a)==4?"DEPENDENT":\ | ||
91 | "UNKNOWN" | ||
92 | |||
93 | /* The idea here is that, although not every plugin will use all of these, | ||
94 | most will or should. Therefore, for consistency, these very common | ||
95 | options should have only these meanings throughout the overall suite */ | ||
96 | |||
97 | #define STD_LONG_OPTS \ | ||
98 | {"version",no_argument,0,'V'},\ | ||
99 | {"verbose",no_argument,0,'v'},\ | ||
100 | {"help",no_argument,0,'h'},\ | ||
101 | {"timeout",required_argument,0,'t'},\ | ||
102 | {"critical",required_argument,0,'c'},\ | ||
103 | {"warning",required_argument,0,'w'},\ | ||
104 | {"hostname",required_argument,0,'H'} | ||
105 | |||