2 * Object oriented C module to send ICMP and ICMPv6 `echo's.
3 * Copyright (C) 2006 Florian octo Forster <octo at verplant.org>
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; either version 2 of the License, or
8 * (at your option) any later version.
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.
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
34 # include <sys/socket.h>
41 typedef struct pinghost pinghost_t;
43 typedef pinghost_t pingobj_iter_t;
46 typedef struct pingobj pingobj_t;
48 #define PING_OPT_TIMEOUT 0x01
49 #define PING_OPT_TTL 0x02
50 #define PING_OPT_AF 0x04
51 #define PING_OPT_DATA 0x08
53 #define PING_DEF_TIMEOUT 1.0
54 #define PING_DEF_TTL 255
55 #define PING_DEF_AF AF_UNSPEC
56 #define PING_DEF_DATA "Florian Forster <octo@verplant.org> http://verplant.org/"
61 pingobj_t *ping_construct (void);
62 void ping_destroy (pingobj_t *obj);
64 int ping_setopt (pingobj_t *obj, int option, void *value);
66 int ping_send (pingobj_t *obj);
68 int ping_host_add (pingobj_t *obj, const char *host);
69 int ping_host_remove (pingobj_t *obj, const char *host);
71 pingobj_iter_t *ping_iterator_get (pingobj_t *obj);
72 pingobj_iter_t *ping_iterator_next (pingobj_iter_t *iter);
74 #define PING_INFO_HOSTNAME 1
75 #define PING_INFO_ADDRESS 2
76 #define PING_INFO_FAMILY 3
77 #define PING_INFO_LATENCY 4
78 #define PING_INFO_SEQUENCE 5
79 #define PING_INFO_IDENT 6
80 int ping_iterator_get_info (pingobj_iter_t *iter, int info,
81 void *buffer, size_t *buffer_len);
83 const char *ping_get_error (pingobj_t *obj);
85 void *ping_iterator_get_context (pingobj_iter_t *iter);
86 void ping_iterator_set_context (pingobj_iter_t *iter, void *context);
88 #endif /* OCTO_PING_H */