From 1400310f05dd83413fd3a7b9ec27f0c5ee1e0a92 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Wed, 27 Oct 2010 10:24:12 +0200 Subject: nat: Explain that we do not want to have a + in the replacement rule --- openbsc/src/nat/bsc_nat_utils.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openbsc/src/nat/bsc_nat_utils.c b/openbsc/src/nat/bsc_nat_utils.c index e1f1ddcfe..abcb2717d 100644 --- a/openbsc/src/nat/bsc_nat_utils.c +++ b/openbsc/src/nat/bsc_nat_utils.c @@ -788,6 +788,12 @@ struct msgb *bsc_nat_rewrite_setup(struct bsc_nat *nat, struct msgb *msg, struct if (entry->mnc[0] == '*' || strncmp(entry->mnc, imsi + 3, 2) != 0) continue; + if (entry->text[0] == '+') { + LOGP(DNAT, LOGL_ERROR, + "Plus is not allowed in the number"); + continue; + } + /* We have an entry for the IMSI. Need to match now */ if (regcomp(®, entry->option, REG_EXTENDED) != 0) { LOGP(DNAT, LOGL_ERROR, -- cgit v1.2.3