mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-10-23 08:12:01 +00:00
vty: Allow enabling Osmux
Change-Id: Ica2f82473bf1934502444be2325ee2049d938781
This commit is contained in:
@@ -1305,14 +1305,7 @@ DEFUN(cfg_mgcp_osmux,
|
||||
if (strcmp(argv[0], "off") == 0) {
|
||||
g_cfg->osmux = OSMUX_USAGE_OFF;
|
||||
return CMD_SUCCESS;
|
||||
}
|
||||
|
||||
/* Since OSMUX support is not finished, we do not
|
||||
* allow to turn it on yet. */
|
||||
vty_out(vty, "OSMUX currently unavailable in this software version.%s", VTY_NEWLINE);
|
||||
return CMD_WARNING;
|
||||
#if 0
|
||||
if (strcmp(argv[0], "on") == 0)
|
||||
} else if (strcmp(argv[0], "on") == 0)
|
||||
g_cfg->osmux = OSMUX_USAGE_ON;
|
||||
else if (strcmp(argv[0], "only") == 0)
|
||||
g_cfg->osmux = OSMUX_USAGE_ONLY;
|
||||
@@ -1323,7 +1316,7 @@ DEFUN(cfg_mgcp_osmux,
|
||||
}
|
||||
|
||||
return CMD_SUCCESS;
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
DEFUN(cfg_mgcp_osmux_ip,
|
||||
|
Reference in New Issue
Block a user