Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-dvbci.h
blobb7627ac831a19f2b7c7388a8bfd8a326ef45e58e
1 /* packet-dvbci.h
2 * Routines for DVB-CI (Common Interface) dissection
3 * Copyright 2013, Martin Kaiser <martin@kaiser.cx>
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <gerald@wireshark.org>
7 * Copyright 1998 Gerald Combs
9 * SPDX-License-Identifier: GPL-2.0-or-later
12 #ifndef __PACKET_DVBCI_H__
13 #define __PACKET_DVBCI_H__
15 #include <epan/packet_info.h>
16 #include <epan/value_string.h>
18 /* event byte in the PCAP DVB-CI pseudo-header */
19 #define DVBCI_EVT_DATA_CAM_TO_HOST 0xFF
20 #define DVBCI_EVT_DATA_HOST_TO_CAM 0xFE
21 #define DVBCI_EVT_CIS_READ 0xFD
22 #define DVBCI_EVT_COR_WRITE 0xFC
23 #define DVBCI_EVT_HW_EVT 0xFB
24 /* this value is not really part of the PCAP DVB-CI specification
25 it's used as return value for dvbci_get_evt_from_addrs() when the
26 event can't be determined by looking at source and destination addresses */
27 #define DVBCI_EVT_INVALID_EVT 0x00
29 WS_DLL_PUBLIC const value_string dvbci_event[];
31 int dvbci_set_addrs(uint8_t event, packet_info *pinfo);
33 #endif
36 * Editor modelines - https://www.wireshark.org/tools/modelines.html
38 * Local variables:
39 * c-basic-offset: 4
40 * tab-width: 8
41 * indent-tabs-mode: nil
42 * End:
44 * vi: set shiftwidth=4 tabstop=8 expandtab:
45 * :indentSize=4:tabSize=8:noTabs=true: