Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
aggregation_fields.h
Go to the documentation of this file.
1/* aggregation_fields.h
2 * Definitions and functions for aggregation fields
3 * By Hamdi Miladi <hamdi.miladi@technica-engineering.de>
4 * Copyright 2025 Hamdi Miladi
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 __AGGREGATION_FIELDS_H__
14#define __AGGREGATION_FIELDS_H__
15
16#ifdef __cplusplus
17extern "C" {
18#endif /* __cplusplus */
19
24typedef struct aggregation_field {
25 char *field;
26 int hf_id;
28
29/* Keep the UAT structure local to the aggregation_fields */
30void aggregation_field_register_uat(module_t* pref_module);
31
32#ifdef __cplusplus
33}
34#endif /* __cplusplus */
35
36WS_DLL_PUBLIC
37void apply_aggregation_prefs(void);
38
39#endif /* __AGGREGATION_FIELDS_H__ */
Definition aggregation_fields.h:24
Definition prefs-int.h:27