|
Wireshark 4.7.0
The Wireshark network protocol analyzer
|
#include <glib.h>Go to the source code of this file.
Classes | |
| struct | profile_def |
Macros | |
| #define | PROF_STAT_DEFAULT 1 |
| #define | PROF_STAT_EXISTS 2 |
| #define | PROF_STAT_NEW 3 |
| #define | PROF_STAT_CHANGED 4 |
| #define | PROF_STAT_COPY 5 |
| #define | PROF_STAT_IMPORT 6 |
Functions | |
| void | init_profile_list (void) |
| GList * | add_to_profile_list (const char *name, const char *parent, int status, bool is_global, bool from_global, bool is_import) |
| void | copy_profile_list (void) |
| void | empty_profile_list (bool edit_list) |
| void | remove_from_profile_list (GList *fl_entry) |
| GList * | current_profile_list (void) |
| GList * | edited_profile_list (void) |
| char * | apply_profile_changes (void) |
| const char * | get_profile_parent (const char *profilename) |
| bool | delete_current_profile (void) |
Definitions for dialog box for profiles editing. Stig Bjorlykke stig@.nosp@m.bjor.nosp@m.lykke.nosp@m..org, 2008
Wireshark - Network traffic analyzer By Gerald Combs geral.nosp@m.d@wi.nosp@m.resha.nosp@m.rk.o.nosp@m.rg Copyright 1998 Gerald Combs
SPDX-License-Identifier: GPL-2.0-or-later
"Configuration Profiles" dialog box
"Configuration Profiles" utility routines
| GList * add_to_profile_list | ( | const char * | name, |
| const char * | parent, | ||
| int | status, | ||
| bool | is_global, | ||
| bool | from_global, | ||
| bool | is_import | ||
| ) |
User requested the "Configuration Profiles" popup menu.
| name | Profile name |
| parent | Parent profile name |
| status | Current status |
| is_global | Profile is in the global configuration directory |
| from_global | Profile is copied from the global configuration directory |
| is_import | Profile has been imported and no directory has to be created |
| char * apply_profile_changes | ( | void | ) |
Apply the changes in the edited profile list
| void copy_profile_list | ( | void | ) |
Refresh the current (non-edited) profile list.
| GList * current_profile_list | ( | void | ) |
Current profile list
| bool delete_current_profile | ( | void | ) |
Remove the current profile.
| GList * edited_profile_list | ( | void | ) |
Edited profile list
| void empty_profile_list | ( | bool | edit_list | ) |
Clear out the profile list
| edit_list | Remove edited entries |
| const char * get_profile_parent | ( | const char * | profilename | ) |
Given a profile name, return the name of its parent profile.
| profilename | Child profile name |
| void init_profile_list | ( | void | ) |
Initialize the profile list. Can be called more than once.
| void remove_from_profile_list | ( | GList * | fl_entry | ) |
Remove an entry from the profile list.
| fl_entry | Profile list entry |