Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / packet-sapsnc.h
blob4f1fde161562dcb80077a21567028ab095f0d132
1 /* packet-sapsnc.h
2 * Routines for SAP SNC (Secure Network Connectoin) dissection
3 * Copyright 2022, Martin Gallo <martin.gallo [AT] gmail.com>
4 * Code contributed by SecureAuth Corp.
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
10 * SPDX-License-Identifier: GPL-2.0-or-later
13 #ifndef __PACKET_SAPPSNC_H__
14 #define __PACKET_SAPPSNC_H__
16 #include <epan/packet.h>
18 extern /**
19 * Dissect an SNC Frame. If data it's found for wrapped/signed frames, it
20 * returns a new TVB buffer with the content. This function can be called
21 * from any dissector that wants SNC frames to be decoded.
23 tvbuff_t*
24 dissect_sapsnc_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, uint32_t offset);
26 #endif /* __PACKET_SAPPSNC_H__ */