Code

Fixed tests (Mathew Ericson - 738608)
[nagiosplug.git] / plugins / netutils.h
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 ******************************************************************************/
33 #include "config.h"
34 #include <netinet/in.h>
35 #include <arpa/inet.h>
37 RETSIGTYPE socket_timeout_alarm_handler (int);
39 int process_tcp_request2 (char *address, int port, char *sbuffer,
40         char *rbuffer, int rsize);
41 int process_tcp_request (char *address, int port, char *sbuffer,
42         char *rbuffer, int rsize);
43 int process_udp_request (char *address, int port, char *sbuffer,
44         char *rbuffer, int rsize);
45 int process_request (char *address, int port, int proto, char *sbuffer,
46         char *rbuffer, int rsize);
48 int my_tcp_connect (char *address, int port, int *sd);
49 int my_udp_connect (char *address, int port, int *sd);
50 int my_connect (char *address, int port, int *sd, int proto);
52 int is_host (char *);
53 int is_addr (char *);
54 int resolve_host_or_addr (char *, int);
55 int is_inet_addr (char *);
56 #ifdef USE_IPV6
57 int is_inet6_addr (char *);
58 #endif
59 int is_hostname (char *);
61 extern int socket_timeout;
62 extern int econn_refuse_state;
63 extern int was_refused;