Fix IP address logging in Section A

This commit is contained in:
martinhsv 2020-10-16 13:14:42 -07:00
parent 995f22b3ce
commit 8436c78993
No known key found for this signature in database
GPG Key ID: F57A523574F4E928
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
v3.x.y - YYYY-MMM-DD (to be released)
-------------------------------------
- Fix IP address logging in Section A
[Issue #2300 - @inaratech, @zavazingo, @martinhsv]
- Adds support to lua 5.4
[@zimmerle]
- GeoIP: switch to GEOIP_MEMORY_CACHE from GEOIP_INDEX_CACHE

View File

@ -1522,9 +1522,9 @@ std::string Transaction::toOldAuditLogFormat(int parts,
strftime(tstr, 299, "[%d/%b/%Y:%H:%M:%S %z]", &timeinfo);
audit_log << tstr;
audit_log << " " << m_id->c_str();
audit_log << " " << this->m_clientIpAddress;
audit_log << " " << this->m_clientIpAddress->c_str();
audit_log << " " << this->m_clientPort;
audit_log << " " << m_serverIpAddress;
audit_log << " " << m_serverIpAddress->c_str();
audit_log << " " << this->m_serverPort;
audit_log << std::endl;