QUIC: Update IETF draft URL (draft-08)
[metze/wireshark/wip.git] / epan / media_params.h
1 /* media_params.h
2  * Routines for parsing media type parameters as per RFC 822 and RFC 2045
3  * Copyright 2004, Anders Broman.
4  * Copyright 2004, Olivier Biot.
5  *
6  * Refer to the AUTHORS file or the AUTHORS section in the man page
7  * for contacting the author(s) of this file.
8  *
9  * Wireshark - Network traffic analyzer
10  * By Gerald Combs <gerald@wireshark.org>
11  * Copyright 1998 Gerald Combs
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26  */
27
28 #ifndef __MEDIA_PARAMS_H__
29 #define __MEDIA_PARAMS_H__
30
31 #include <glib.h>
32
33 #include "ws_symbol_export.h"
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif /* __cplusplus */
38
39 WS_DLL_PUBLIC char *
40 ws_find_media_type_parameter(const char *parameters, const char *key);
41
42 #ifdef __cplusplus
43 }
44 #endif /* __cplusplus */
45
46 #endif /* media_params.h */