aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-11-12 20:09:04 +0300
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2021-11-12 20:26:17 +0300
commit1ec8e54317cadd1d73765f01789e54240bfcfdbe (patch)
tree709d43c5dc0abef38b3c07435dd3d38a648463b8
parent3caede749895a153ac583c9416d7fbd6c6e56bd5 (diff)
Do not mention deprecated -M / --mncc-sock-path options
-rw-r--r--doc/manuals/chapters/running.adoc7
-rw-r--r--src/osmo-msc/msc_main.c5
2 files changed, 4 insertions, 8 deletions
diff --git a/doc/manuals/chapters/running.adoc b/doc/manuals/chapters/running.adoc
index 445a16420..988b84dbe 100644
--- a/doc/manuals/chapters/running.adoc
+++ b/doc/manuals/chapters/running.adoc
@@ -5,7 +5,7 @@ arguments:
=== SYNOPSIS
-*osmo-msc* [-h|-V] [-d 'DBGMASK'] [-D] [-c 'CONFIGFILE'] [-s] [-T] [-e 'LOGLEVEL'] [-l 'DATABASE'] [-M 'SOCKETPATH']
+*osmo-msc* [-h|-V] [-d 'DBGMASK'] [-D] [-c 'CONFIGFILE'] [-s] [-T] [-e 'LOGLEVEL'] [-l 'DATABASE']
=== OPTIONS
@@ -37,11 +37,6 @@ arguments:
<<logging>> for more information.
*-l, --database 'DATABASE'*::
Specify the file name of the SQLite3 database to use as SMS storage
-*-M, --mncc-sock-path*::
- Enable the MNCC socket for an external MNCC handler. See
- <<mncc>> for further information.
-*-m, --mncc-sock*::
- Same as option -M (deprecated).
=== Multiple instances
diff --git a/src/osmo-msc/msc_main.c b/src/osmo-msc/msc_main.c
index cd91d54f7..07d76ddaa 100644
--- a/src/osmo-msc/msc_main.c
+++ b/src/osmo-msc/msc_main.c
@@ -131,7 +131,6 @@ static void print_help()
printf(" -T --timestamp Prefix every log line with a timestamp.\n");
printf(" -V --version Print the version of OsmoMSC.\n");
printf(" -e --log-level number Set a global loglevel.\n");
- printf(" -M --mncc-sock-path PATH Disable built-in MNCC handler and offer socket.\n");
printf("\nVTY reference generation:\n");
printf(" --vty-ref-mode MODE VTY reference generation mode (e.g. 'expert').\n");
@@ -178,7 +177,7 @@ static void handle_options(int argc, char **argv)
{"timestamp", 0, 0, 'T'},
{"version", 0, 0, 'V' },
{"log-level", 1, 0, 'e'},
- {"mncc-sock-path", 1, 0, 'M'},
+ {"mncc-sock-path", 1, 0, 'M'}, /* deprecated */
{"no-dbcounter", 0, 0, 'C'}, /* deprecated */
{"vty-ref-mode", 1, &long_option, 1},
{"vty-ref-xml", 0, &long_option, 2},
@@ -221,6 +220,8 @@ static void handle_options(int argc, char **argv)
break;
case 'M':
msc_cmdline_config.mncc_sock_path = optarg;
+ fprintf(stderr, "Command line argument '-%c' is deprecated, use VTY "
+ "parameter 'msc' / 'mncc external %s' instead.\n", c, optarg);
break;
case 'C':
fprintf(stderr, "-C is deprecated and does nothing.");