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#pragma once
13#include <epan/prefs.h>
14
15#ifdef __cplusplus
16extern "C" {
17#endif /* __cplusplus */
18
30
31/* Keep the UAT structure local to the aggregation_fields */
32
42
43#ifdef __cplusplus
44}
45#endif /* __cplusplus */
46
53WS_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:81
struct aggregation_field aggregation_field_t
Associates a display filter field name with its registered header field ID for aggregation.
void aggregation_field_register_uat(module_t *pref_module)
Registers UAT for aggregation fields.
Definition aggregation_fields.c:56
Associates a display filter field name with its registered header field ID for aggregation.
Definition aggregation_fields.h:26
int hf_id
Definition aggregation_fields.h:28
char * field
Definition aggregation_fields.h:27
Represents a preference module grouping related preferences under a named, hierarchical entry in the ...
Definition prefs-int.h:27