summaryrefslogtreecommitdiffstats
path: root/plugins/netutils.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/netutils.h.in')
-rw-r--r--plugins/netutils.h.in63
1 files changed, 63 insertions, 0 deletions
diff --git a/plugins/netutils.h.in b/plugins/netutils.h.in
new file mode 100644
index 0000000..be4ae24
--- /dev/null
+++ b/plugins/netutils.h.in
@@ -0,0 +1,63 @@
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 <sys/socket.h>
38#include <netinet/in.h>
39#include <arpa/inet.h>
40#include <netdb.h>
41
42void socket_timeout_alarm_handler (int);
43
44int process_tcp_request2 (char *address, int port, char *sbuffer,
45 char *rbuffer, int rsize);
46int process_tcp_request (char *address, int port, char *sbuffer,
47 char *rbuffer, int rsize);
48int process_udp_request (char *address, int port, char *sbuffer,
49 char *rbuffer, int rsize);
50int process_request (char *address, int port, char *proto, char *sbuffer,
51 char *rbuffer, int rsize);
52
53int my_tcp_connect (char *address, int port, int *sd);
54int my_udp_connect (char *address, int port, int *sd);
55int my_connect (char *address, int port, int *sd, char *proto);
56
57int my_inet_aton (register const char *cp, struct in_addr *addr);
58
59#ifndef DEFAULT_SOCKET_TIMEOUT
60#include "config.h"
61#include "common.h"
62#endif
63int socket_timeout = DEFAULT_SOCKET_TIMEOUT;