]> git.ipfire.org Git - thirdparty/squid.git/blob - src/tests/stub_libsecurity.cc
Merge fixes for some issues reported by Coverity
[thirdparty/squid.git] / src / tests / stub_libsecurity.cc
1 /*
2 * Copyright (C) 1996-2015 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 "comm/Connection.h"
11
12 #define STUB_API "security/libsecurity.la"
13 #include "tests/STUB.h"
14
15 #include "security/EncryptorAnswer.h"
16 Security::EncryptorAnswer::~EncryptorAnswer() {}
17 std::ostream &Security::operator <<(std::ostream &os, const Security::EncryptorAnswer &) STUB_RETVAL(os)
18
19 #include "security/PeerOptions.h"
20 Security::PeerOptions Security::ProxyOutgoingConfig;
21 void Security::PeerOptions::parse(char const*) STUB
22 Security::ContextPointer Security::PeerOptions::createClientContext(bool) STUB_RETVAL(NULL)
23 void Security::PeerOptions::updateTlsVersionLimits() STUB
24 void Security::PeerOptions::dumpCfg(Packable*, char const*) const STUB
25 long Security::PeerOptions::parseOptions() STUB_RETVAL(0)
26 long Security::PeerOptions::parseFlags() STUB_RETVAL(0)
27 void parse_securePeerOptions(Security::PeerOptions *) STUB
28