From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- include/ws_exit_codes.h | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 include/ws_exit_codes.h (limited to 'include/ws_exit_codes.h') diff --git a/include/ws_exit_codes.h b/include/ws_exit_codes.h new file mode 100644 index 0000000..5a5f5a2 --- /dev/null +++ b/include/ws_exit_codes.h @@ -0,0 +1,30 @@ +/** @file + * + * Definition of exit codes for programs. + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef __WS_EXIT_CODES_H__ +#define __WS_EXIT_CODES_H__ + +/* Exit codes */ +#define WS_EXIT_INVALID_OPTION 1 +#define WS_EXIT_INVALID_INTERFACE 2 +#define WS_EXIT_INVALID_FILE 3 +#define WS_EXIT_INVALID_FILTER 4 +#define WS_EXIT_INVALID_CAPABILITY 5 +#define WS_EXIT_IFACE_HAS_NO_LINK_TYPES 6 +#define WS_EXIT_IFACE_HAS_NO_TIMESTAMP_TYPES 7 +#define WS_EXIT_INIT_FAILED 8 +#define WS_EXIT_OPEN_ERROR 9 +#define WS_EXIT_PCAP_NOT_SUPPORTED 10 +#define WS_EXIT_DUMPCAP_NOT_SUPPORTED 11 +#define WS_EXIT_NO_INTERFACES 12 +#define WS_EXIT_PCAP_ERROR 13 + +#endif /* __WS_EXIT_CODES_H__ */ -- cgit v1.2.3