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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/** @file
*
* Handle command-line arguments common to various programs
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef __CLOPTS_COMMON_H__
#define __CLOPTS_COMMON_H__
#include <wireshark.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/*
* Long options.
* For long options with no corresponding short options, we define values
* outside the range of ASCII graphic characters, make that the last
* component of the entry for the long option, and have a case for that
* option in the switch statement.
*/
// Base value for capture related long options
#define LONGOPT_BASE_CAPTURE 1000
// Base value for dissector related long options
#define LONGOPT_BASE_DISSECTOR 2000
// Base value for application specific long options
#define LONGOPT_BASE_APPLICATION 3000
// Base value for GUI specific long options
#define LONGOPT_BASE_GUI 4000
#define LONGOPT_READ_CAPTURE_COMMON \
{"read-file", ws_required_argument, NULL, 'r' }, \
#define OPTSTRING_READ_CAPTURE_COMMON \
"r:"
WS_DLL_PUBLIC int
get_natural_int(const char *string, const char *name);
WS_DLL_PUBLIC int
get_positive_int(const char *string, const char *name);
WS_DLL_PUBLIC uint32_t
get_uint32(const char *string, const char *name);
WS_DEPRECATED_X("Use get_uint32 instead")
static inline uint32_t
get_guint32(const char *string, const char *name) { return get_uint32(string, name); }
WS_DLL_PUBLIC uint32_t
get_nonzero_uint32(const char *string, const char *name);
WS_DEPRECATED_X("Use get_nonzero_uint32 instead")
static inline uint32_t
get_nonzero_guint32(const char *string, const char *name) { return get_nonzero_uint32(string, name); }
WS_DLL_PUBLIC uint64_t
get_uint64(const char *string, const char *name);
WS_DLL_PUBLIC uint64_t
get_nonzero_uint64(const char *string, const char *name);
WS_DLL_PUBLIC double
get_positive_double(const char *string, const char *name);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __CLOPTS_COMMON_H__ */
|