nat: Close the connection after we couldn't find the user

In case the token was not correct, just close the connection.
It is not clear that forcing a new TCP connection is going to
give us any extra security here. But with the upcoming auth
handling it does make sense to have both case look similar.
This commit is contained in:
Holger Hans Peter Freyther 2015-06-08 11:55:02 +02:00
parent aa0cecd9b7
commit 0363d1bb97
1 changed files with 1 additions and 0 deletions

View File

@ -985,6 +985,7 @@ static void ipaccess_auth_bsc(struct tlv_parsed *tvp, struct bsc_connection *bsc
LOGP(DNAT, LOGL_ERROR,
"No bsc found for token '%s' on fd: %d.\n", token,
bsc->write_queue.bfd.fd);
bsc_close_connection(bsc);
return;
}