TLS: log client port in addition to ssl protocol and cipher

This commit is contained in:
Koichiro IWAO 2017-01-13 17:59:29 +09:00
parent c89c1318f8
commit f29a98b243
1 changed files with 5 additions and 3 deletions

View File

@ -834,17 +834,19 @@ xrdp_rdp_incoming(struct xrdp_rdp *self)
if (iso->selectedProtocol > PROTOCOL_RDP)
{
log_message(LOG_LEVEL_INFO,
"TLS connection established from %s: %s with cipher %s",
"TLS connection established from %s port %s: %s with cipher %s",
self->client_info.client_addr,
self->client_info.client_port,
iso->trans->ssl_protocol,
iso->trans->cipher_name);
}
else
{
log_message(LOG_LEVEL_INFO,
"Non-TLS connection established from %s: "
"Non-TLS connection established from %s port %s: "
"encrypted with standard RDP security",
self->client_info.client_addr);
self->client_info.client_addr,
self->client_info.client_port);
}
return 0;