Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-knxip.h
1/* packet-knxip.h
2 * Routines for KNXnet/IP dissection
3 * Copyright 2004, Jan Kessler <[email protected]>
4 *
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <[email protected]>
7 * Copyright 1998 Gerald Combs
8 *
9 * SPDX-License-Identifier: GPL-2.0-or-later
10 */
11#ifndef PACKET_KNXIP_H
12#define PACKET_KNXIP_H
13
14#include <epan/expert.h>
15#include "packet-knxip_decrypt.h"
16
17#define KIP_ERROR &ei_knxip_error
18#define KIP_WARNING &ei_knxip_warning
19
20extern expert_field ei_knxip_error;
21extern expert_field ei_knxip_warning;
22
23extern uint8_t knxip_host_protocol;
24extern uint8_t knxip_error;
25
26#define MAX_KNX_DECRYPTION_KEYS 10
27
28extern uint8_t knx_decryption_keys[ MAX_KNX_DECRYPTION_KEYS ][ KNX_KEY_LENGTH ];
29extern uint8_t knx_decryption_key_count;
30
31#endif
32
33/*
34 * Editor modelines - https://www.wireshark.org/tools/modelines.html
35 *
36 * Local variables:
37 * c-basic-offset: 2
38 * tab-width: 8
39 * indent-tabs-mode: nil
40 * End:
41 *
42 * vi: set shiftwidth=2 tabstop=8 expandtab:
43 * :indentSize=2:tabSize=8:noTabs=true:
44 */
Definition expert.h:39