Fix a wrong name in a debug print statement.
[obnox/wireshark/wip.git] / wiretap / erf.h
1 /*
2 *
3 * Copyright (c) 2003 Endace Technology Ltd, Hamilton, New Zealand.
4 * All rights reserved.
5 *
6 * This software and documentation has been developed by Endace Technology Ltd.
7 * along with the DAG PCI network capture cards. For further information please
8 * visit http://www.endace.com/.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions are met:
12 *
13 *  1. Redistributions of source code must retain the above copyright notice,
14 *  this list of conditions and the following disclaimer.
15 *
16 *  2. Redistributions in binary form must reproduce the above copyright
17 *  notice, this list of conditions and the following disclaimer in the
18 *  documentation and/or other materials provided with the distribution.
19 *
20 *  3. The name of Endace Technology Ltd may not be used to endorse or promote
21 *  products derived from this software without specific prior written
22 *  permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY ENDACE TECHNOLOGY LTD ``AS IS'' AND ANY EXPRESS
25 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
26 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
27 * EVENT SHALL ENDACE TECHNOLOGY LTD BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
29 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
31 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 * POSSIBILITY OF SUCH DAMAGE.
34 *
35 * $Id$
36 */
37
38 #ifndef __W_ERF_H__
39 #define __W_ERF_H__
40
41 /* Record type defines */
42 #define ERF_TYPE_LEGACY             0
43 #define ERF_TYPE_HDLC_POS           1
44 #define ERF_TYPE_ETH                2
45 #define ERF_TYPE_ATM                3
46 #define ERF_TYPE_AAL5               4
47 #define ERF_TYPE_MC_HDLC            5
48 #define ERF_TYPE_MC_RAW             6
49 #define ERF_TYPE_MC_ATM             7
50 #define ERF_TYPE_MC_RAW_CHANNEL     8
51 #define ERF_TYPE_MC_AAL5            9
52 #define ERF_TYPE_COLOR_HDLC_POS     10
53 #define ERF_TYPE_COLOR_ETH          11
54 #define ERF_TYPE_MC_AAL2            12
55 #define ERF_TYPE_IP_COUNTER         13
56 #define ERF_TYPE_TCP_FLOW_COUNTER   14
57 #define ERF_TYPE_DSM_COLOR_HDLC_POS 15
58 #define ERF_TYPE_DSM_COLOR_ETH      16
59 #define ERF_TYPE_COLOR_MC_HDLC_POS  17
60 #define ERF_TYPE_AAL2               18
61 #define ERF_TYPE_INFINIBAND         21
62 #define ERF_TYPE_IPV4               22
63 #define ERF_TYPE_IPV6               23
64 #define ERF_TYPE_RAW_LINK           24
65 #define ERF_TYPE_INFINIBAND_LINK    25
66
67 #define ERF_TYPE_PAD                48
68
69 #define ERF_TYPE_MIN  1   /* sanity checking */
70 #define ERF_TYPE_MAX  48  /* sanity checking */
71
72  /*
73   * The timestamp is 64bit unsigned fixed point little-endian value with
74   * 32 bits for second and 32 bits for fraction.
75   */
76 typedef guint64 erf_timestamp_t;
77
78 typedef struct erf_record {
79         erf_timestamp_t ts;
80         guint8          type;
81         guint8          flags;
82         guint16         rlen;
83         guint16         lctr;
84         guint16         wlen;
85 } erf_header_t;
86
87 typedef struct erf_mc_hdr {
88         guint32 mc;
89 } erf_mc_header_t;
90
91 typedef struct erf_eth_hdr {
92         guint16 eth;
93 } erf_eth_header_t;
94
95 union erf_subhdr { 
96   struct erf_mc_hdr mc_hdr;
97   struct erf_eth_hdr eth_hdr;
98 };
99
100 #define MIN_RECORDS_FOR_ERF_CHECK 3
101 #define RECORDS_FOR_ERF_CHECK 20
102 #define FCS_BITS        32
103
104 int erf_open(wtap *wth, int *err, gchar **err_info);
105
106 #endif /* __W_ERF_H__ */