Code

Created standard subversion directories.
[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; either version 2 of the License, or
8  * (at your option) any later version.
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  */
20 #ifndef OCTO_PING_H
21 #define OCTO_PING_H 1
23 #if HAVE_CONFIG_H
24 # include <config.h>
25 #endif
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
37 /*
38  * Type definitions
39  */
40 struct pinghost;
41 typedef struct pinghost pinghost_t;
43 typedef pinghost_t pingobj_iter_t;
45 struct pingobj;
46 typedef struct pingobj pingobj_t;
48 #define PING_OPT_TIMEOUT 0x01
49 #define PING_OPT_TTL     0x02
50 #define PING_OPT_AF      0x04
52 #define PING_DEF_TIMEOUT 1.0
53 #define PING_DEF_TTL     255
54 #define PING_DEF_AF      AF_UNSPEC
56 /*
57  * Method definitions
58  */
59 pingobj_t *ping_construct (void);
60 void ping_destroy (pingobj_t *obj);
62 int ping_setopt (pingobj_t *obj, int option, void *value);
64 int ping_send (pingobj_t *obj);
66 int ping_host_add (pingobj_t *obj, const char *host);
67 int ping_host_remove (pingobj_t *obj, const char *host);
69 pingobj_iter_t *ping_iterator_get (pingobj_t *obj);
70 pingobj_iter_t *ping_iterator_next (pingobj_iter_t *iter);
72 #define PING_INFO_HOSTNAME 1
73 #define PING_INFO_ADDRESS  2
74 #define PING_INFO_FAMILY   3
75 #define PING_INFO_LATENCY  4
76 #define PING_INFO_SEQUENCE 5
77 #define PING_INFO_IDENT    6
78 int ping_iterator_get_info (pingobj_iter_t *iter, int info,
79                 void *buffer, size_t *buffer_len);
81 const char *ping_get_error (pingobj_t *obj);
83 void *ping_iterator_get_context (pingobj_iter_t *iter);
84 void  ping_iterator_set_context (pingobj_iter_t *iter, void *context);
86 #endif /* OCTO_PING_H */