Wireshark  4.3.0
The Wireshark network protocol analyzer
packet-rtsp.h
1 /* packet-rtsp.h
2  *
3  * by Stephane GORSE (Orange Labs / France Telecom)
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * SPDX-License-Identifier: GPL-2.0-or-later
10  */
11 
12 #ifndef __PACKET_RTSP_H__
13 #define __PACKET_RTSP_H__
14 
15 /* Used for RTSP statistics */
16 typedef struct _rtsp_info_value_t {
17  guint32 framenum;
18  gchar *request_method;
19  guint response_code;
20  gchar *rtsp_host;
21  gchar *request_uri;
23 
24 WS_DLL_PUBLIC const value_string rtsp_status_code_vals[];
25 
26 #endif /* __PACKET_RTSP_H__ */
Definition: packet-rtsp.h:16
Definition: value_string.h:26