aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-26 21:25:38 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-26 21:25:38 +0100
commit3bbb58bfdb1176f592daa7347a2d8883924fcc2f (patch)
treef8fadad4352e969c655e49ecdee28bc18cb17def
parentb38b33b884d3ae4637d206c50e7f91a5c1b33857 (diff)
mtp: Group all MTP settings together.
-rw-r--r--src/vty_interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vty_interface.c b/src/vty_interface.c
index bc6c6e5..f3f711c 100644
--- a/src/vty_interface.c
+++ b/src/vty_interface.c
@@ -64,6 +64,7 @@ static int config_write_cell(struct vty *vty)
vty_out(vty, " mtp opc %d%s", bsc.opc, VTY_NEWLINE);
vty_out(vty, " mtp ni %d%s", bsc.ni_ni, VTY_NEWLINE);
vty_out(vty, " mtp spare %d%s", bsc.ni_spare, VTY_NEWLINE);
+ vty_out(vty, " mtp sltm once %d%s", bsc.once, VTY_NEWLINE);
vty_out(vty, " country-code %d%s", bsc.mcc, VTY_NEWLINE);
vty_out(vty, " network-code %d%s", bsc.mnc, VTY_NEWLINE);
vty_out(vty, " location-area-code %d%s", bsc.lac, VTY_NEWLINE);
@@ -72,7 +73,6 @@ static int config_write_cell(struct vty *vty)
vty_out(vty, " udp dest port %d%s", bsc.udp_port, VTY_NEWLINE);
vty_out(vty, " udp src port %d%s", bsc.src_port, VTY_NEWLINE);
vty_out(vty, " udp reset %d%s", bsc.link.udp.reset_timeout, VTY_NEWLINE);
- vty_out(vty, " mtp sltm once %d%s", bsc.once, VTY_NEWLINE);
vty_out(vty, " msc ip %s%s", bsc.msc_address, VTY_NEWLINE);
vty_out(vty, " msc ip-dscp %d%s", bsc.msc_ip_dscp, VTY_NEWLINE);
vty_out(vty, " msc token %s%s", bsc.token, VTY_NEWLINE);