blob: 4c81c11edd678183bbcacca2b96dcd2afd674f61 (
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
31
32
33
|
#ifndef POTD_OPTIONS_H
#define POTD_OPTIONS_H 1
struct opt_list;
typedef enum opt_name {
OPT_LOGTOFILE = 0, OPT_LOGFILE, OPT_LOGLEVEL,
OPT_DAEMON,
OPT_REDIRECT,
OPT_PROTOCOL,
OPT_JAIL,
OPT_ROOT,
OPT_NETNS_RUN_DIR,
OPT_SECCOMP_MINIMAL,
OPT_HELP,
OPT_MAX
} opt_name;
typedef int check_opt;
int parse_cmdline(int argc, char **argv);
int getopt_used(opt_name on);
char *
getopt_str(opt_name on);
char *
getopt_strlist(opt_name on, struct opt_list **ol);
#endif
|