summaryrefslogtreecommitdiff
path: root/capture_opts.h
diff options
context:
space:
mode:
Diffstat (limited to 'capture_opts.h')
-rw-r--r--capture_opts.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/capture_opts.h b/capture_opts.h
index 4fc4d67fd1..4cc52f91de 100644
--- a/capture_opts.h
+++ b/capture_opts.h
@@ -67,6 +67,7 @@ extern "C" {
#define LONGOPT_DISABLE_PROTOCOL 130
#define LONGOPT_ENABLE_HEURISTIC 131
#define LONGOPT_DISABLE_HEURISTIC 132
+#define LONGOPT_FULL_SCREEN 133
/*
* Options for capturing common to all capturing programs.
@@ -108,7 +109,8 @@ extern "C" {
{"linktype", required_argument, NULL, 'y'}, \
{"disable-protocol", required_argument, NULL, LONGOPT_DISABLE_PROTOCOL }, \
{"enable-heuristic", required_argument, NULL, LONGOPT_ENABLE_HEURISTIC }, \
- {"disable-heuristic", required_argument, NULL, LONGOPT_DISABLE_HEURISTIC },
+ {"disable-heuristic", required_argument, NULL, LONGOPT_DISABLE_HEURISTIC }, \
+ {"fullscreen", no_argument, NULL, LONGOPT_FULL_SCREEN },
#define OPTSTRING_CAPTURE_COMMON \
"a:" OPTSTRING_A "b:" OPTSTRING_B "c:Df:i:" OPTSTRING_I "Lps:y:"