wireshark/epan/dissectors/packet-sprt.h
Dario Lombardo fe219637a6 dissectors: use SPDX identifiers.
Change-Id: I92c94448e6641716d03158a5f332c8b53709423a
Reviewed-on: https://code.wireshark.org/review/25756
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
2018-02-12 16:49:58 +00:00

30 lines
752 B
C

/* packet-sprt.h
*
* Routines for SPRT dissection
* SPRT = Simple Packet Relay Transport
*
* Written by Jamison Adcock <jamison.adcock@cobham.com>
* for Sparta Inc., dba Cobham Analytic Solutions
* This code is largely based on the RTP parsing code
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef _PACKET_SPRT_H
#define _PACKET_SPRT_H
void sprt_add_address(packet_info *pinfo,
address *addr,
int port,
int other_port,
const gchar *setup_method,
guint32 setup_frame_number);
#endif /* _PACKET_SPRT_H */