aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gsm_data.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-04-17 09:07:24 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-04-17 09:07:24 +0200
commitc24632930a9207dec8b76946bce6dac76cafe00b (patch)
tree8e8db0ca0dbfee0652ad38125bb47830e29ab130 /openbsc/src/gsm_data.c
parentf140348eff37a08ec40c6156941de2611673fb17 (diff)
bsc_msc_ip: Allow to put the MSC address into the network config
Diffstat (limited to 'openbsc/src/gsm_data.c')
-rw-r--r--openbsc/src/gsm_data.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/openbsc/src/gsm_data.c b/openbsc/src/gsm_data.c
index e817a5dd7..5db1ff239 100644
--- a/openbsc/src/gsm_data.c
+++ b/openbsc/src/gsm_data.c
@@ -294,6 +294,9 @@ struct gsm_network *gsm_network_init(u_int16_t country_code, u_int16_t network_c
net->core_network_code = -1;
net->rtp_base_port = 4000;
+ net->msc_ip = talloc_strdup(net, "127.0.0.1");
+ net->msc_port = 5000;
+
return net;
}