aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-06-29 21:21:48 +0200
committerHarald Welte <laforge@gnumonks.org>2015-11-15 14:04:06 +0100
commit74fcfa03c74e020623dd16def305077c559e0422 (patch)
tree4e713822bfb45f2373ce49e18686388194990b43
parentf0e324547a0c7e9a8674a1e54a7a5ed761c7b231 (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 */