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 | |
---|
27 | #ifndef TRACEREPORT_H |
---|
28 | #define TRACEREPORT_H |
---|
29 | |
---|
30 | #include "lt_inttypes.h" |
---|
31 | |
---|
32 | typedef struct { |
---|
33 | uint64_t count; |
---|
34 | uint64_t bytes; |
---|
35 | } stat_t; |
---|
36 | |
---|
37 | typedef enum { |
---|
38 | REPORT_TYPE_ERROR = 1, |
---|
39 | REPORT_TYPE_FLOW = 1 << 1, |
---|
40 | REPORT_TYPE_TOS = 1 << 2, |
---|
41 | REPORT_TYPE_PROTO = 1 << 3, |
---|
42 | REPORT_TYPE_PORT = 1 << 4, |
---|
43 | REPORT_TYPE_TTL = 1 << 5, |
---|
44 | REPORT_TYPE_TCPOPT = 1 << 6, |
---|
45 | REPORT_TYPE_NLP = 1 << 7, |
---|
46 | REPORT_TYPE_DIR = 1 << 8, |
---|
47 | REPORT_TYPE_ECN = 1 << 9, |
---|
48 | REPORT_TYPE_TCPSEG = 1 << 10, |
---|
49 | REPORT_TYPE_SYNOPT = 1 << 11, |
---|
50 | REPORT_TYPE_LOCALITY = 1 << 12, /* No longer used by libtrace */ |
---|
51 | REPORT_TYPE_MISC = 1 << 13, |
---|
52 | REPORT_TYPE_DROPS = 1<< 14 |
---|
53 | } report_type_t; |
---|
54 | |
---|
55 | #endif |
---|