blob: e6928c5ce746b8c3927fea50177689a46ca0a3a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/* Copyright (C) 2014 Farsight Security, Inc. <software@farsightsecurity.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/*!
* \author Robert Edmonds <edmonds@fsi.io>
*
* \brief Dnstap file writer.
*/
#pragma once
#include <fstrm.h>
#include <protobuf-c/protobuf-c.h>
/*! \brief Structure for dnstap file writer. */
typedef struct {
/*!< Output writer. */
struct fstrm_writer *fw;
/*!< dnstap "version" field. */
void *version;
/*!< length of dnstap "version" field. */
size_t len_version;
} dt_writer_t;
/*!
* \brief Creates dnstap file writer structure.
*
* \param file_path Name of file to write output to.
* \param version Version string of software. May be NULL.
*
* \retval writer if success.
* \retval NULL if error.
*/
dt_writer_t* dt_writer_create(const char *file_path, const char *version);
/*!
* \brief Finish writing dnstap file writer and free resources.
*
* \param writer dnstap file writer structure.
*/
void dt_writer_free(dt_writer_t *writer);
/*!
* \brief Write a protobuf to the dnstap file writer.
*
* Supported protobuf types for the 'msg' parameter:
* \c Dnstap__Message
*
* \param writer dnstap file writer structure.
* \param msg dnstap protobuf. Must be a supported type.
*
* \retval KNOT_EOK
* \retval KNOT_EINVAL
* \retval KNOT_ENOMEM
*/
int dt_writer_write(dt_writer_t *writer, const ProtobufCMessage *msg);
|