aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-06-29 21:21:48 +0200
committerHolger Hans Peter Freyther <zecke@selfish.org>2013-04-07 20:04:14 +0200
commitb097bf1d662f5516d0a45c241efb42411370d0e8 (patch)
tree0647254b1fd0be6d0213d56b8be257dd4b982b48
parent3ebd609b12ed3eb68c38e806d9ee3af69cbf085c (diff)
ganc: change hard-coded MCC/MNC to 901-70
right now we use 901-70 based IMSIs for testing - but this of course needs to become vty configurable soon.
-rw-r--r--openbsc/src/osmo-ganc/ganc_data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/osmo-ganc/ganc_data.c b/openbsc/src/osmo-ganc/ganc_data.c
index dd6470a56..4566ff1a2 100644
--- a/openbsc/src/osmo-ganc/ganc_data.c
+++ b/openbsc/src/osmo-ganc/ganc_data.c
@@ -14,8 +14,8 @@ void ganc_bts_init(struct ganc_bts *bts, struct ganc_net *net)
void ganc_net_init(struct ganc_net *net)
{
- net->country_code = 1;
- net->network_code = 1;
+ net->country_code = 901;
+ net->network_code = 70;
net->timer[TU3901] = 30; /* seconds */
net->timer[TU3902] = 30; /* seconds */