Always put editor-modelines at the end of the file ...
[metze/wireshark/wip.git] / ui / tap-rtp-common.h
1 /* tap-rtp-common.h
2  * RTP streams handler functions used by tshark and wireshark
3  *
4  * Copyright 2008, Ericsson AB
5  * By Balint Reczey <balint.reczey@ericsson.com>
6  *
7  * most functions are copied from ui/gtk/rtp_stream.c and ui/gtk/rtp_analisys.c
8  * Copyright 2003, Alcatel Business Systems
9  * By Lars Ruoff <lars.ruoff@gmx.net>
10  *
11  * Wireshark - Network traffic analyzer
12  * By Gerald Combs <gerald@wireshark.org>
13  * Copyright 1998 Gerald Combs
14  *
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation,  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28  */
29
30 #ifndef TAP_RTP_COMMON_H_INCLUDED
31 #define TAP_RTP_COMMON_H_INCLUDED
32
33 gint rtp_stream_info_cmp(gconstpointer, gconstpointer);
34 void rtpstream_reset_cb(void*);
35 void rtp_write_header(rtp_stream_info_t*, FILE*);
36 void rtp_write_sample(rtp_sample_t*, FILE*);
37 int rtpstream_packet(void*, packet_info*, epan_dissect_t *, const void *);
38
39 #endif /*TAP_RTP_COMMON_H_INCLUDED*/
40
41 /*
42  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
43  *
44  * Local variables:
45  * c-basic-offset: 4
46  * tab-width: 8
47  * indent-tabs-mode: nil
48  * End:
49  *
50  * vi: set shiftwidth=4 tabstop=8 expandtab:
51  * :indentSize=4:tabSize=8:noTabs=true:
52  */