2 * Object oriented C module to send ICMP and ICMPv6 `echo's.
3 * Copyright (C) 2006-2011 Florian octo Forster <ff at octo.it>
5 * This library is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License as published by the
7 * Free Software Foundation; either version 2.1 of the License, or (at your
8 * option) any later version.
10 * This library is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this library; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
29 #include <sys/types.h>
30 #include <sys/socket.h>
36 #define OPING_VERSION 1008000
42 typedef struct pinghost pinghost_t;
44 typedef pinghost_t pingobj_iter_t;
47 typedef struct pingobj pingobj_t;
49 #define PING_OPT_TIMEOUT 0x01
50 #define PING_OPT_TTL 0x02
51 #define PING_OPT_AF 0x04
52 #define PING_OPT_DATA 0x08
53 #define PING_OPT_SOURCE 0x10
54 #define PING_OPT_DEVICE 0x20
55 #define PING_OPT_QOS 0x40
56 #define PING_OPT_MARK 0x80
58 #define PING_DEF_TIMEOUT 1.0
59 #define PING_DEF_TTL 255
60 #define PING_DEF_AF AF_UNSPEC
61 #define PING_DEF_DATA "liboping -- ICMP ping library <http://octo.it/liboping/>"
66 pingobj_t *ping_construct (void);
67 void ping_destroy (pingobj_t *obj);
69 int ping_setopt (pingobj_t *obj, int option, void *value);
71 int ping_send (pingobj_t *obj);
73 int ping_host_add (pingobj_t *obj, const char *host);
74 int ping_host_remove (pingobj_t *obj, const char *host);
76 pingobj_iter_t *ping_iterator_get (pingobj_t *obj);
77 pingobj_iter_t *ping_iterator_next (pingobj_iter_t *iter);
79 #define PING_INFO_HOSTNAME 1
80 #define PING_INFO_ADDRESS 2
81 #define PING_INFO_FAMILY 3
82 #define PING_INFO_LATENCY 4
83 #define PING_INFO_SEQUENCE 5
84 #define PING_INFO_IDENT 6
85 #define PING_INFO_DATA 7
86 #define PING_INFO_USERNAME 8
87 #define PING_INFO_DROPPED 9
88 #define PING_INFO_RECV_TTL 10
89 #define PING_INFO_RECV_QOS 11
90 int ping_iterator_get_info (pingobj_iter_t *iter, int info,
91 void *buffer, size_t *buffer_len);
93 const char *ping_get_error (pingobj_t *obj);
95 void *ping_iterator_get_context (pingobj_iter_t *iter);
96 void ping_iterator_set_context (pingobj_iter_t *iter, void *context);
102 #endif /* OCTO_PING_H */