osmux: print out 'osmux port' when saving configuration

This commit is contained in:
Pablo Neira Ayuso 2014-08-28 16:48:55 +02:00
parent 0fe78d39bd
commit eb7aeb19a2
1 changed files with 2 additions and 0 deletions

View File

@ -135,6 +135,8 @@ static int config_write_mgcp(struct vty *vty)
g_cfg->osmux == 1 ? "on" : "off", VTY_NEWLINE);
vty_out(vty, " osmux batch-factor %d%s",
g_cfg->osmux_batch, VTY_NEWLINE);
vty_out(vty, " osmux port %u%s",
g_cfg->osmux_port, VTY_NEWLINE);
return CMD_SUCCESS;
}