aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/nat/bsc_nat.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-04-23 14:13:27 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-06-15 20:24:16 +0800
commit4c683d1215939ee8850f95160f973831e56c8310 (patch)
tree7d4442d072a3b52f236c206d22a83b32562a7e0a /openbsc/src/nat/bsc_nat.c
parent9db7843c067a0aff5c0396cfe19184e7b6e60327 (diff)
nat: Only close connections that were fully connected
Remember that we have seen a CC and have a valid destination local reference now and only send a fake RLC to the MSC when we had connections in this state.
Diffstat (limited to 'openbsc/src/nat/bsc_nat.c')
-rw-r--r--openbsc/src/nat/bsc_nat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/src/nat/bsc_nat.c b/openbsc/src/nat/bsc_nat.c
index d5ed7515b..52844276c 100644
--- a/openbsc/src/nat/bsc_nat.c
+++ b/openbsc/src/nat/bsc_nat.c
@@ -444,7 +444,8 @@ static void remove_bsc_connection(struct bsc_connection *connection)
if (sccp_patch->bsc != connection)
continue;
- nat_send_rlsd(sccp_patch);
+ if (sccp_patch->has_remote_ref)
+ nat_send_rlsd(sccp_patch);
sccp_connection_destroy(sccp_patch);
}