*
* Common command line handling between GUIs
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __COMMANDLINE_H__
#define __COMMANDLINE_H__
#include "cfile.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void commandline_print_usage(bool for_help_option);
extern void commandline_early_options(int argc, char *argv[]);
typedef struct commandline_param_info
{
#ifdef HAVE_LIBPCAP
bool list_link_layer_types;
bool list_timestamp_types;
bool start_capture;
bool quit_after_cap;
* We currently don't support this as a way to add file comments
* to an existing capture file in Wireshark; we only support it
* for adding comments to live captures.
*/
GPtrArray *capture_comments;
#endif
e_prefs *prefs_p;
search_direction jump_backwards;
uint32_t go_to_packet;
char* jfilter;
char* cf_name;
char* rfilter;
char* dfilter;
bool full_screen;
GSList *user_opts;
} commandline_param_info_t;
extern void commandline_override_prefs(int argc, char *argv[], bool opt_reset);
extern void commandline_other_options(int argc, char *argv[], bool opt_reset);
extern void commandline_options_drop(const char *module_name, const char *pref_name);
extern void commandline_options_reapply(void);
extern void commandline_options_apply_extcap(void);
extern void commandline_options_free(void);
extern commandline_param_info_t global_commandline_info;
#ifdef __cplusplus
}
#endif
#endif