Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
export_pdu_ui_utils.h
1 /*
2  * export_pdu_ui_utils.h
3  * Routines for exported_pdu dissection
4  * Copyright 2013, Anders Broman <anders-broman@ericsson.com>
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #ifndef EXPORT_PDU_UI_UTILS_H
14 #define EXPORT_PDU_UI_UTILS_H
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif /* __cplusplus */
19 
24 gboolean do_export_pdu(const char *filter, const gchar *tap_name, exp_pdu_t *data);
25 
26 
27 #ifdef __cplusplus
28 }
29 #endif /* __cplusplus */
30 
31 #endif /* EXPORT_PDU_UI_UTILS_H */
Definition: tap_export_pdu.h:18