After testing for the presence of python-config, fix typo so that we actually
[obnox/wireshark/wip.git] / tap-rtp-common.h
1 /* tap-rtp-common.h
2  * RTP streams handler functions used by tshark and wireshark
3  *
4  * $Id$
5  *
6  * Copyright 2008, Ericsson AB
7  * By Balint Reczey <balint.reczey@ericsson.com>
8  *
9  * most functions are copied from gtk/rtp_stream.c and gtk/rtp_analisys.c
10  * Copyright 2003, Alcatel Business Systems
11  * By Lars Ruoff <lars.ruoff@gmx.net>
12  *
13  * Wireshark - Network traffic analyzer
14  * By Gerald Combs <gerald@wireshark.org>
15  * Copyright 1998 Gerald Combs
16  *
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.
21  *
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.
26  *
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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
30  */
31
32 #ifndef TAP_RTP_COMMON_H_INCLUDED
33 #define TAP_RTP_COMMON_H_INCLUDED
34
35 #include "gtk/rtp_stream.h"
36
37 gint rtp_stream_info_cmp(gconstpointer, gconstpointer);
38 void rtpstream_reset_cb(void*);
39 void rtp_write_header(rtp_stream_info_t*, FILE*);
40 void rtp_write_sample(rtp_sample_t*, FILE*);
41 int rtpstream_packet(void*, packet_info*, epan_dissect_t *, const void *);
42
43 #endif /*TAP_RTP_COMMON_H_INCLUDED*/