1 | /* |
---|
2 | * |
---|
3 | * Copyright (c) 2007-2016 The University of Waikato, Hamilton, New Zealand. |
---|
4 | * All rights reserved. |
---|
5 | * |
---|
6 | * This file is part of libtrace. |
---|
7 | * |
---|
8 | * This code has been developed by the University of Waikato WAND |
---|
9 | * research group. For further information please see http://www.wand.net.nz/ |
---|
10 | * |
---|
11 | * libtrace is free software; you can redistribute it and/or modify |
---|
12 | * it under the terms of the GNU Lesser General Public License as published by |
---|
13 | * the Free Software Foundation; either version 3 of the License, or |
---|
14 | * (at your option) any later version. |
---|
15 | * |
---|
16 | * libtrace is distributed in the hope that it will be useful, |
---|
17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
19 | * GNU Lesser General Public License for more details. |
---|
20 | * |
---|
21 | * You should have received a copy of the GNU Lesser General Public License |
---|
22 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
---|
23 | * |
---|
24 | * |
---|
25 | */ |
---|
26 | #ifndef FORMAT_ERF_H |
---|
27 | #define FORMAT_ERF_H |
---|
28 | |
---|
29 | #include "libtrace.h" |
---|
30 | |
---|
31 | /** @file |
---|
32 | * |
---|
33 | * @brief Header file defining functions that apply to all libtrace formats |
---|
34 | * that use the ERF record format, e.g. ERF, DAG 2.4, DAG 2.5 |
---|
35 | * |
---|
36 | * @author Daniel Lawson |
---|
37 | * @author Perry Lorier |
---|
38 | * @author Shane Alcock |
---|
39 | * |
---|
40 | * @version $Id$ |
---|
41 | * |
---|
42 | * Not too much detail required with these functions - this header file exists |
---|
43 | * solely to ensure that we don't have to duplicate the same code across |
---|
44 | * multiple format modules. |
---|
45 | */ |
---|
46 | |
---|
47 | int erf_get_framing_length(const libtrace_packet_t *packet); |
---|
48 | libtrace_linktype_t erf_get_link_type(const libtrace_packet_t *packet); |
---|
49 | libtrace_direction_t erf_get_direction(const libtrace_packet_t *packet); |
---|
50 | libtrace_direction_t erf_set_direction(libtrace_packet_t *packet, libtrace_direction_t direction); |
---|
51 | uint64_t erf_get_erf_timestamp(const libtrace_packet_t *packet); |
---|
52 | int erf_get_capture_length(const libtrace_packet_t *packet); |
---|
53 | int erf_get_wire_length(const libtrace_packet_t *packet); |
---|
54 | size_t erf_set_capture_length(libtrace_packet_t *packet, size_t size); |
---|
55 | |
---|
56 | #endif |
---|