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#pragma once
13#include <epan/prefs.h>
14
15#ifdef __cplusplus
16extern "C" {
17#endif /* __cplusplus */
18
23typedef struct aggregation_field {
24 char *field;
25 int hf_id;
27
28/* Keep the UAT structure local to the aggregation_fields */
29
39
40#ifdef __cplusplus
41}
42#endif /* __cplusplus */
43
50WS_DLL_PUBLIC
WS_DLL_PUBLIC void apply_aggregation_prefs(void)
Applies aggregation preferences from a UAT (User-Accessible Table) to the global preferences structur...
Definition aggregation_fields.c:74
void aggregation_field_register_uat(module_t *pref_module)
Registers UAT for aggregation fields.
Definition aggregation_fields.c:50
Definition aggregation_fields.h:23
Definition prefs-int.h:24