2 * Routines for mgcp packet disassembly
5 * Copyright (c) 2000 by Ed Warnicke <hagbard@physics.rutgers.edu>
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1999 Gerald Combs
11 * SPDX-License-Identifier: GPL-2.0-or-later
14 /* A simple MGCP type that is occasionally handy */
15 typedef enum _mgcp_type
22 /* Container for tapping relevant data */
23 typedef struct _mgcp_info_t
25 mgcp_type_t mgcp_type
;
30 bool request_available
;
31 uint32_t req_num
; /* frame number request seen */
40 /* Item of request list */
41 typedef struct _mgcp_call_t
45 uint32_t req_num
; /* frame number request seen */
46 uint32_t rsp_num
; /* frame number response seen */
53 * Editor modelines - https://www.wireshark.org/tools/modelines.html
61 * vi: set shiftwidth=8 tabstop=8 noexpandtab:
62 * :indentSize=8:tabSize=8:noTabs=false: