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 <[email protected]>
4 * Copyright 2025 Hamdi Miladi
5 *
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <[email protected]>
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#include <epan/prefs.h>
17
18#ifdef __cplusplus
19extern "C" {
20#endif /* __cplusplus */
21
26typedef struct aggregation_field {
27 char *field;
28 int hf_id;
30
31/* Keep the UAT structure local to the aggregation_fields */
32void aggregation_field_register_uat(module_t* pref_module);
33
34#ifdef __cplusplus
35}
36#endif /* __cplusplus */
37
38WS_DLL_PUBLIC
39void apply_aggregation_prefs(void);
40
41#endif /* __AGGREGATION_FIELDS_H__ */
Definition aggregation_fields.h:26
Definition prefs-int.h:27