]> git.ipfire.org Git - thirdparty/squid.git/blob - src/log/FormatSquidUseragent.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / log / FormatSquidUseragent.cc
1 /*
2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
3 *
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.
7 */
8
9 /* DEBUG: section 46 Access Log - Squid useragent format */
10
11 #include "squid.h"
12 #include "AccessLogEntry.h"
13 #include "HttpRequest.h"
14 #include "log/File.h"
15 #include "log/Formats.h"
16 #include "SquidTime.h"
17
18 void
19 Log::Format::SquidUserAgent(const AccessLogEntry::Pointer &al, Logfile * logfile)
20 {
21 const char *agent = NULL;
22
23 if (al->request)
24 agent = al->request->header.getStr(Http::HdrType::USER_AGENT);
25
26 if (!agent || *agent == '\0')
27 agent = "-";
28
29 char clientip[MAX_IPSTRLEN];
30 al->getLogClientIp(clientip, MAX_IPSTRLEN);
31
32 logfilePrintf(logfile, "%s [%s] \"%s\"\n",
33 clientip,
34 Time::FormatHttpd(squid_curtime),
35 agent);
36 }
37