HACK: pinfo->private_data points to smb_info again
[wireshark-wip.git] / epan / dissectors / packet-rtsp.h
blobe82fe8b0efaecf1e006fdddba85cee904f1d1481
1 /* packet-rtsp.h
3 * $Id$
4 * Liberally copied from packet-http.h,
5 * by Stephane GORSE (Orange Labs / France Telecom)
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@wireshark.org>
9 * Copyright 1998 Gerald Combs
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #ifndef __PACKET_RTSP_H__
27 #define __PACKET_RTSP_H__
29 /* Used for RTSP statistics */
30 typedef struct _rtsp_info_value_t {
31 guint32 framenum;
32 gchar *request_method;
33 guint response_code;
34 gchar *rtsp_host;
35 gchar *request_uri;
36 } rtsp_info_value_t;
38 WS_DLL_PUBLIC const value_string rtsp_status_code_vals[];
40 #endif /* __PACKET_RTSP_H__ */