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>
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.
24 dissect_sapsnc_frame(tvbuff_t
*tvb
, packet_info
*pinfo
, proto_tree
*tree
, uint32_t offset
);
26 #endif /* __PACKET_SAPPSNC_H__ */