aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-07-13 19:11:45 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-07-13 19:11:59 +0200
commitd1bd6fce9c8447ab9834b57650d1ceb1bdcf1dab (patch)
tree7a9b8a710563d97f2de693d7b0226acda90fed4b
parenta32e4c4fb8d971dfa19dc9ea1a2dbc287d430f2b (diff)
gtp: Log ignore CTX DEL REQ due to no teardown and only 1 ctx active
-rw-r--r--gtp/gtp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtp/gtp.c b/gtp/gtp.c
index 5b83d20..1309cb5 100644
--- a/gtp/gtp.c
+++ b/gtp/gtp.c
@@ -2553,6 +2553,9 @@ int gtp_delete_pdp_ind(struct gsn_t *gsn, int version,
if (linked_pdp->secondary_tei[n])
count++;
if (count <= 1) {
+ GTP_LOGPKG(LOGL_NOTICE, peer, pack, len,
+ "Ignoring CTX DEL without teardown and count=%d\n",
+ count);
return 0; /* 29.060 7.3.5 Ignore message */
}
}