Merge branch 'origin'
[liboping.git] / src / oping.h
1 /**
2  * Object oriented C module to send ICMP and ICMPv6 `echo's.
3  * Copyright (C) 2006  Florian octo Forster <octo at verplant.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; only version 2 of the License is
8  * applicable.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #ifndef OCTO_PING_H
21 #define OCTO_PING_H 1
22
23 #if HAVE_CONFIG_H
24 # include <config.h>
25 #endif
26
27 #if HAVE_STDLIB_H
28 # include <stdlib.h>
29 #endif
30 #if HAVE_UNISTD_H
31 # include <unistd.h>
32 #endif
33 #if HAVE_SYS_SOCKET_H
34 # include <sys/socket.h>
35 #endif
36
37 /*
38  * Type definitions
39  */
40 struct pinghost;
41 typedef struct pinghost pinghost_t;
42
43 typedef pinghost_t pingobj_iter_t;
44
45 struct pingobj;
46 typedef struct pingobj pingobj_t;
47
48 #define PING_OPT_TIMEOUT 0x01
49 #define PING_OPT_TTL     0x02
50 #define PING_OPT_AF      0x04
51 #define PING_OPT_DATA    0x08
52 #define PING_OPT_SOURCE  0x10
53
54 #define PING_DEF_TIMEOUT 1.0
55 #define PING_DEF_TTL     255
56 #define PING_DEF_AF      AF_UNSPEC
57 #define PING_DEF_DATA    "Florian Forster <octo@verplant.org> http://verplant.org/"
58
59 /*
60  * Method definitions
61  */
62 pingobj_t *ping_construct (void);
63 void ping_destroy (pingobj_t *obj);
64
65 int ping_setopt (pingobj_t *obj, int option, void *value);
66
67 int ping_send (pingobj_t *obj);
68
69 int ping_host_add (pingobj_t *obj, const char *host);
70 int ping_host_remove (pingobj_t *obj, const char *host);
71
72 pingobj_iter_t *ping_iterator_get (pingobj_t *obj);
73 pingobj_iter_t *ping_iterator_next (pingobj_iter_t *iter);
74
75 #define PING_INFO_HOSTNAME 1
76 #define PING_INFO_ADDRESS  2
77 #define PING_INFO_FAMILY   3
78 #define PING_INFO_LATENCY  4
79 #define PING_INFO_SEQUENCE 5
80 #define PING_INFO_IDENT    6
81 #define PING_INFO_DATA     7
82 int ping_iterator_get_info (pingobj_iter_t *iter, int info,
83                 void *buffer, size_t *buffer_len);
84
85 const char *ping_get_error (pingobj_t *obj);
86
87 void *ping_iterator_get_context (pingobj_iter_t *iter);
88 void  ping_iterator_set_context (pingobj_iter_t *iter, void *context);
89
90 #endif /* OCTO_PING_H */