Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
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  * SPDX-License-Identifier: GPL-2.0-or-later
14  */
15 
16 #ifndef __MEDIA_PARAMS_H__
17 #define __MEDIA_PARAMS_H__
18 
19 #include <epan/wmem/wmem.h>
20 
21 #include "ws_symbol_export.h"
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif /* __cplusplus */
26 
27 WS_DLL_PUBLIC char *
28 ws_find_media_type_parameter(wmem_allocator_t *scope, const char *parameters, const char *key);
29 
30 #ifdef __cplusplus
31 }
32 #endif /* __cplusplus */
33 
34 #endif /* media_params.h */
Definition: wmem_allocator.h:26