summaryrefslogtreecommitdiffstats
path: root/include/ws_exit_codes.h
blob: 5a5f5a2ba108d7e6e5b939fdd2f2ea0f43d11bcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/** @file
 *
 * Definition of exit codes for programs.
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * 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__ */