aboutsummaryrefslogtreecommitdiffstats
path: root/sgsnemu/cmdline.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-10-07 18:45:54 +0200
committerHarald Welte <laforge@gnumonks.org>2011-10-07 18:45:54 +0200
commit3a4c67b4bf0067c4949a60bc750d01e0576c5e08 (patch)
tree9d92dc39d341fc0be78a7d389175a66ddf78712e /sgsnemu/cmdline.h
parent41af5691ef08fb70e2c65aba03c8b9e6c20983a6 (diff)
optionally do not send recovery with sgsnemu
According to 3GPP TS 29.060 recovery is optional, add command line option --norecovery to remove this field in sgsnemu Signed-off-by: Yann BONNAMY <yann_bonnamy@yahoo.fr> Signed-off-by: Harald Welte <laforge@gnumonks.org>
Diffstat (limited to 'sgsnemu/cmdline.h')
-rw-r--r--sgsnemu/cmdline.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sgsnemu/cmdline.h b/sgsnemu/cmdline.h
index 5a4f8d9..24185f4 100644
--- a/sgsnemu/cmdline.h
+++ b/sgsnemu/cmdline.h
@@ -132,6 +132,8 @@ struct gengetopt_args_info
const char *pingcount_help; /* Number of ping req to send help description. */
int pingquiet_flag; /* Do not print ping packet info (default=off). */
const char *pingquiet_help; /* Do not print ping packet info help description. */
+ int norecovery_flag; /* Do not print ping packet info (default=off). */
+ const char *norecovery_help; /* Do not print ping packet info help description. */
int help_given ; /* Whether help was given. */
int version_given ; /* Whether version was given. */
@@ -173,6 +175,7 @@ struct gengetopt_args_info
int pingsize_given ; /* Whether pingsize was given. */
int pingcount_given ; /* Whether pingcount was given. */
int pingquiet_given ; /* Whether pingquiet was given. */
+ int norecovery_given ; /* Whether norecovery was given. */
} ;