]>
git.ipfire.org Git - thirdparty/squid.git/blob - src/log/FormatSquidIcap.cc
87fc19aa84b8e024d15ce07b461ff6b935de9a9b
2 * Copyright (C) 1996-2025 The Squid Software Foundation and contributors
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
9 /* DEBUG: section 46 Access Log - Squid ICAP Logging */
15 #include "AccessLogEntry.h"
16 #include "format/Quoting.h"
17 #include "HttpRequest.h"
19 #include "log/Formats.h"
20 #include "SquidConfig.h"
23 Log::Format::SquidIcap(const AccessLogEntry::Pointer
&al
, Logfile
* logfile
)
25 const char *user
= nullptr;
26 char tmp
[MAX_IPSTRLEN
], clientbuf
[MAX_IPSTRLEN
];
28 const auto client
= al
->getLogClientFqdn(clientbuf
, sizeof(clientbuf
));
31 if (al
->request
!= nullptr && al
->request
->auth_user_request
!= nullptr)
32 user
= ::Format::QuoteUrlEncodeUsername(al
->request
->auth_user_request
->username());
36 user
= ::Format::QuoteUrlEncodeUsername(al
->getExtUser());
40 user
= ::Format::QuoteUrlEncodeUsername(al
->cache
.ssluser
);
46 logfilePrintf(logfile
, "%9ld.%03d %6ld %s %s/%03d %" PRId64
" %s %s %s -/%s -\n",
47 (long int) current_time
.tv_sec
,
48 (int) current_time
.tv_usec
/ 1000,
49 tvToMsec(al
->icap
.trTime
),
54 Adaptation::Icap::ICAP::methodStr(al
->icap
.reqMethod
),
55 al
->icap
.reqUri
.termedBuf(),
57 al
->icap
.hostAddr
.toStr(tmp
, MAX_IPSTRLEN
));