Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-rdt.h
blob9df1183a1485a10dfa2d1982521858aac4152bed
1 /* packet-rdt.h
3 * Routines for RDT dissection
4 * RDT = Real Data Transport
6 * Written by Martin Mathieson
8 * Wireshark - Network traffic analyzer
9 * By Gerald Combs <gerald@wireshark.org>
10 * Copyright 1998 Gerald Combs
12 * SPDX-License-Identifier: GPL-2.0-or-later
15 /* Info to save in RDT conversation / packet-info */
16 #define MAX_RDT_SETUP_METHOD_SIZE 7
17 struct _rdt_conversation_info
19 char method[MAX_RDT_SETUP_METHOD_SIZE + 1];
20 uint32_t frame_number;
21 int feature_level;
24 /* Add an RDT conversation with the given details */
25 void rdt_add_address(packet_info *pinfo,
26 address *addr, int port,
27 int other_port,
28 const char *setup_method,
29 int rdt_feature_level);