]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_access_log.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / tests / stub_access_log.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 #include "squid.h"
10 #include "HierarchyLogEntry.h"
11
12 #define STUB_API "access.log.cc"
13 #include "tests/STUB.h"
14
15 HierarchyLogEntry::HierarchyLogEntry() STUB
16
17 ping_data::ping_data() :
18 n_sent(0),
19 n_recv(0),
20 n_replies_expected(0),
21 timeout(0),
22 timedout(0),
23 w_rtt(0),
24 p_rtt(0)
25 {
26 start.tv_sec = 0;
27 start.tv_usec = 0;
28 stop.tv_sec = 0;
29 stop.tv_usec = 0;
30 }
31