Merge branch 'collectd-5.7' into collectd-5.8
[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 "collectd/client.h"
31
32 #include <inttypes.h>
33 #include <stdint.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 { NONE, SIGN, ENCRYPT };
46 typedef enum lcc_security_level_e lcc_security_level_t;
47
48 /*
49  * Create / destroy object
50  */
51 lcc_network_t *lcc_network_create(void);
52 void lcc_network_destroy(lcc_network_t *net);
53
54 /*
55  * Add servers
56  */
57 lcc_server_t *lcc_server_create(lcc_network_t *net, const char *node,
58                                 const char *service);
59 int lcc_server_destroy(lcc_network_t *net, lcc_server_t *srv);
60
61 /* Configure servers */
62 int lcc_server_set_ttl(lcc_server_t *srv, uint8_t ttl);
63 int lcc_server_set_interface(lcc_server_t *srv, char const *interface);
64 int lcc_server_set_security_level(lcc_server_t *srv, lcc_security_level_t level,
65                                   const char *username, const char *password);
66
67 /*
68  * Send data
69  */
70 int lcc_network_values_send(lcc_network_t *net, const lcc_value_list_t *vl);
71 #if 0
72 int lcc_network_notification_send (lcc_network_t *net,
73     const lcc_notification_t *notif);
74 #endif
75
76 #endif /* LIBCOLLECTDCLIENT_NETWORK_H */