Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-gsm_osmux.h
1/* packet-gsm_osmux.h
2 *
3 * Routines for packet dissection of Osmux voice/signalling multiplex protocol
4
5 * (C) 2024 by sysmocom s.f.m.c. GmbH <[email protected]>
6 * Written by Pau Espin Pedrol <[email protected]>
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11#ifndef __PACKET_GSM_OSMUX_H__
12#define __PACKET_GSM_OSMUX_H__
13
14#include "config.h"
15
16#include <stdint.h>
17
18#include "epan/packet.h"
19
20void
21osmux_add_address(packet_info *pinfo, address *addr, int port, int other_port, uint32_t setup_frame_number);
22
23#endif /*__PACKET_GSM_OSMUX_H__*/
Definition address.h:56
Definition packet_info.h:43