nat: Improve the log message in case we have SCCP data without a connection

Describe which kind of data we have and where it was coming from
as this makes debugging a bit easier.
This commit is contained in:
Holger Hans Peter Freyther 2010-09-15 00:14:48 +08:00
parent 5f54075a8b
commit 27640fc255
1 changed files with 4 additions and 1 deletions

View File

@ -767,7 +767,10 @@ static int forward_sccp_to_msc(struct bsc_connection *bsc, struct msgb *msg)
}
if (!con_msc) {
LOGP(DNAT, LOGL_ERROR, "No connection found, dropping data.\n");
LOGP(DNAT, LOGL_ERROR, "Not forwarding data bsc_nr: %d ipa: %d type: 0x%x\n",
bsc->cfg->nr,
parsed ? parsed->ipa_proto : -1,
parsed ? parsed->sccp_type : -1);
goto exit2;
}