Copied missing files from the subversion repository.
[collectd.git] / src / libping / ping.h
1 /**
2  * PING header
3  *
4  * Copyright (C) 2001 Jeffrey Fulmer <jdfulmer@armstrong.com>
5  * This file is part of LIBPING
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22 #ifndef PING_H
23 #define PING_H
24
25 #ifdef HAVE_CONFIG_H
26 # include <config.h>
27 #endif/*HAVE_CONFIG_H*/
28
29 #include <stdio.h>
30
31 #ifdef  HAVE_UNISTD_H
32 # include <unistd.h>
33 #endif/*HAVE_UNISTD_H*/
34
35 #ifdef  HAVE_STDLIB_H
36 # include <stdlib.h>
37 #endif/*HAVE_STDLIB_H*/
38
39 #ifdef HAVE_SYS_TIMES_H
40 # include <sys/times.h>
41 #endif /*HAVE_SYS_TIMES_H*/
42 #if TIME_WITH_SYS_TIME
43 # include <sys/time.h>
44 # include <time.h>
45 #else
46 # if HAVE_SYS_TIME_H
47 #  include <sys/time.h>
48 # else
49 #  include <time.h>
50 # endif
51 #endif /*TIME_WITH_SYS_TIME*/
52
53 #include <string.h>
54 #include <netinet/in_systm.h>
55 #include <netinet/in.h>
56
57 #ifdef  HAVE_SYS_SOCKET_H
58 # include <sys/socket.h>
59 #endif/*HAVE_SYS_SOCKET_H*/
60
61 #ifdef  HAVE_ARPA_INET_H
62 # include <arpa/inet.h>
63 #endif/*HAVE_ARPA_INET_H*/
64
65 #ifdef  HAVE_NETDB_H
66 # include <netdb.h>
67 #endif/*HAVE_NETDB_H*/
68
69 #if defined( __linux__ )
70 # include "linux.h"
71 #else
72 # include <netinet/ip.h>
73 # include <netinet/ip_icmp.h>
74 #endif /* defined(__linux__) */   
75
76 int pinghost  ( const char *hostname );
77 int pingthost ( const char *hostname, int t );
78 int tpinghost ( const char *hostname );
79 int tpingthost( const char *hostname, int t );
80
81 #endif/*PING_H*/