blob: ebb6b21fac97d8f84d468ad3f631379a33ab385a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* 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 */
|