Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-bt-utp.h
blob3f94e69bd124472df0eee07e8cd21e4f370e4737
1 /* packet-bt-utp.h
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
11 #ifndef __PACKET_BT_UTP_H__
12 #define __PACKET_BT_UTP_H__
14 #include "ws_symbol_export.h"
16 #include <epan/conversation.h>
18 #ifdef __cplusplus
19 extern "C" {
20 #endif /* __cplusplus */
22 /* bittorrent is the only protocol on uTP, so extern not WS_DLL_PUBLIC */
23 extern void
24 utp_dissect_pdus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
25 bool proto_desegment, unsigned fixed_len,
26 unsigned (*get_pdu_len)(packet_info *, tvbuff_t *, int, void*),
27 dissector_t dissect_pdu, void* dissector_data);
29 #ifdef __cplusplus
31 #endif /* __cplusplus */
33 #endif