HACK: 1. try to match RowsetProperties
[wireshark-wip.git] / ui / tap-rtp-common.h
blobfafe4a24c5f600bbb177502e0334e93c27efd506
1 /* tap-rtp-common.h
2 * RTP streams handler functions used by tshark and wireshark
4 * $Id$
6 * Copyright 2008, Ericsson AB
7 * By Balint Reczey <balint.reczey@ericsson.com>
9 * most functions are copied from ui/gtk/rtp_stream.c and ui/gtk/rtp_analisys.c
10 * Copyright 2003, Alcatel Business Systems
11 * By Lars Ruoff <lars.ruoff@gmx.net>
13 * Wireshark - Network traffic analyzer
14 * By Gerald Combs <gerald@wireshark.org>
15 * Copyright 1998 Gerald Combs
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version 2
20 * of the License, or (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 #ifndef TAP_RTP_COMMON_H_INCLUDED
33 #define TAP_RTP_COMMON_H_INCLUDED
35 gint rtp_stream_info_cmp(gconstpointer, gconstpointer);
36 void rtpstream_reset_cb(void*);
37 void rtp_write_header(rtp_stream_info_t*, FILE*);
38 void rtp_write_sample(rtp_sample_t*, FILE*);
39 int rtpstream_packet(void*, packet_info*, epan_dissect_t *, const void *);
41 #endif /*TAP_RTP_COMMON_H_INCLUDED*/