Merge branch 'collectd-5.7' into collectd-5.8
[collectd.git] / src / libcollectdclient / collectd / network_buffer.h
1 /**
2  * collectd - src/libcollectdclient/collectd/network_buffer.h
3  * Copyright (C) 2010-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_BUFFER_H
28 #define LIBCOLLECTDCLIENT_NETWORK_BUFFER_H 1
29
30 #include "collectd/network.h" /* for lcc_security_level_t */
31 #include "collectd/types.h"
32
33 /* Ethernet frame - (IPv6 header + UDP header) */
34 #define LCC_NETWORK_BUFFER_SIZE_DEFAULT 1452
35
36 struct lcc_network_buffer_s;
37 typedef struct lcc_network_buffer_s lcc_network_buffer_t;
38
39 lcc_network_buffer_t *lcc_network_buffer_create(size_t size);
40 void lcc_network_buffer_destroy(lcc_network_buffer_t *nb);
41
42 int lcc_network_buffer_set_security_level(lcc_network_buffer_t *nb,
43                                           lcc_security_level_t level,
44                                           const char *user,
45                                           const char *password);
46
47 int lcc_network_buffer_initialize(lcc_network_buffer_t *nb);
48 int lcc_network_buffer_finalize(lcc_network_buffer_t *nb);
49
50 int lcc_network_buffer_add_value(lcc_network_buffer_t *nb,
51                                  const lcc_value_list_t *vl);
52
53 int lcc_network_buffer_get(lcc_network_buffer_t *nb, void *buffer,
54                            size_t *buffer_size);
55
56 #endif /* LIBCOLLECTDCLIENT_NETWORK_BUFFER_H */