2 * collectd - src/libcollectdclient/collectd/network.h
3 * Copyright (C) 2005-2012 Florian octo Forster
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:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
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.
24 * Florian octo Forster <octo at collectd.org>
27 #ifndef LIBCOLLECTDCLIENT_NETWORK_H
28 #define LIBCOLLECTDCLIENT_NETWORK_H 1
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"
40 typedef struct lcc_network_s lcc_network_t;
43 typedef struct lcc_server_s lcc_server_t;
45 enum lcc_security_level_e
51 typedef enum lcc_security_level_e lcc_security_level_t;
54 * Create / destroy object
56 lcc_network_t *lcc_network_create (void);
57 void lcc_network_destroy (lcc_network_t *net);
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);
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);
76 int lcc_network_values_send (lcc_network_t *net,
77 const lcc_value_list_t *vl);
79 int lcc_network_notification_send (lcc_network_t *net,
80 const lcc_notification_t *notif);
83 /* vim: set sw=2 sts=2 et : */
84 #endif /* LIBCOLLECTDCLIENT_NETWORK_H */