Merge branch 'collectd-5.4' into collectd-5.5
[collectd.git] / src / libcollectdclient / collectd / network.h
1 /**
2  * collectd - src/libcollectdclient/collectd/network.h
3  * Copyright (C) 2005-2012  Florian octo Forster
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in
13  * all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  *
23  * Authors:
24  *   Florian octo Forster <octo at collectd.org>
25  **/
26
27 #ifndef LIBCOLLECTDCLIENT_NETWORK_H
28 #define LIBCOLLECTDCLIENT_NETWORK_H 1
29
30 #include <stdint.h>
31 #include <inttypes.h>
32
33 #include "client.h"
34
35 #define NET_DEFAULT_V4_ADDR "239.192.74.66"
36 #define NET_DEFAULT_V6_ADDR "ff18::efc0:4a42"
37 #define NET_DEFAULT_PORT    "25826"
38
39 struct lcc_network_s;
40 typedef struct lcc_network_s lcc_network_t;
41
42 struct lcc_server_s;
43 typedef struct lcc_server_s lcc_server_t;
44
45 enum lcc_security_level_e
46 {
47   NONE,
48   SIGN,
49   ENCRYPT
50 };
51 typedef enum lcc_security_level_e lcc_security_level_t;
52
53 /*
54  * Create / destroy object
55  */
56 lcc_network_t *lcc_network_create (void);
57 void lcc_network_destroy (lcc_network_t *net);
58
59 /* 
60  * Add servers
61  */
62 lcc_server_t *lcc_server_create (lcc_network_t *net,
63     const char *node, const char *service);
64 int lcc_server_destroy (lcc_network_t *net, lcc_server_t *srv);
65
66 /* Configure servers */
67 int lcc_server_set_ttl (lcc_server_t *srv, uint8_t ttl);
68 int lcc_server_set_interface (lcc_server_t *srv, char const *interface);
69 int lcc_server_set_security_level (lcc_server_t *srv,
70     lcc_security_level_t level,
71     const char *username, const char *password);
72
73 /*
74  * Send data
75  */
76 int lcc_network_values_send (lcc_network_t *net,
77     const lcc_value_list_t *vl);
78 #if 0
79 int lcc_network_notification_send (lcc_network_t *net,
80     const lcc_notification_t *notif);
81 #endif
82
83 /* vim: set sw=2 sts=2 et : */
84 #endif /* LIBCOLLECTDCLIENT_NETWORK_H */