nat: Print a MSG when receiving unknown SCCP messages.

This commit is contained in:
Holger Hans Peter Freyther 2010-04-06 16:07:44 +02:00
parent 47dd4944ae
commit f464ea54d1
1 changed files with 3 additions and 0 deletions

View File

@ -225,6 +225,9 @@ static int forward_sccp_to_bts(struct msgb *msg)
default:
goto exit;
}
if (!con)
LOGP(DNAT, LOGL_ERROR, "Unknown connection for msg type: 0x%x.\n", parsed->sccp_type);
}
talloc_free(parsed);