A simple PeerConnector for Secure ICAP services. No SslBump capabilities. More...


Public Types | |
typedef CbcPointer< PeerConnector > | Pointer |
Public Member Functions | |
IcapPeerConnector (Adaptation::Icap::ServiceRep::Pointer &service, const Comm::ConnectionPointer &aServerConn, AsyncCall::Pointer &aCallback, AccessLogEntry::Pointer const &alp, const time_t timeout=0) | |
virtual bool | initialize (Security::SessionPointer &) |
virtual void | noteNegotiationDone (ErrorState *error) |
virtual Security::ContextPointer | getTlsContext () |
bool | canBeCalled (AsyncCall &call) const |
whether we can be called More... | |
void | callStart (AsyncCall &call) |
virtual void | callEnd () |
called right after the called job method More... | |
virtual void | callException (const std::exception &e) |
called when the job throws during an async call More... | |
void | handleStopRequest () |
process external request to terminate now (i.e. during this async call) More... | |
virtual void * | toCbdata ()=0 |
Static Public Member Functions | |
static void | Start (const Pointer &job) |
Public Attributes | |
bool | noteFwdPconnUse |
hack: whether the connection requires fwdPconnPool->noteUses() More... | |
const InstanceId< AsyncJob > | id |
job identifier More... | |
Protected Member Functions | |
virtual void | start () |
Preps connection and SSL state. Calls negotiate(). More... | |
virtual bool | doneAll () const |
whether positive goal has been reached More... | |
virtual void | swanSong () |
virtual const char * | status () const |
internal cleanup; do not call directly More... | |
void | commTimeoutHandler (const CommTimeoutCbParams &) |
The connection read timeout callback handler. More... | |
void | commCloseHandler (const CommCloseCbParams ¶ms) |
The comm_close callback handler. More... | |
void | negotiate () |
bool | sslFinalized () |
void | handleNegotiationResult (const Security::IoResult &) |
Called after each negotiation step to handle the result. More... | |
void | noteWantRead () |
bool | isSuspended () const |
Whether TLS negotiation has been paused and not yet resumed. More... | |
void | suspendNegotiation (const Security::IoResult &lastError) |
void | resumeNegotiation () |
Resumes TLS negotiation paused by suspendNegotiation() More... | |
void | handleMissingCertificates (const Security::IoResult &lastError) |
Either initiates fetching of missing certificates or bails with an error. More... | |
void | startCertDownloading (SBuf &url) |
Start downloading procedure for the given URL. More... | |
void | certDownloadingDone (SBuf &object, int status) |
Called by Downloader after a certificate object downloaded. More... | |
virtual void | noteWantWrite () |
virtual void | noteNegotiationError (const Security::ErrorDetailPointer &) |
Called when the SSL_connect function aborts with an SSL negotiation error. More... | |
Comm::ConnectionPointer const & | serverConnection () const |
mimics FwdState to minimize changes to FwdState::initiate/negotiateSsl More... | |
void | bail (ErrorState *error) |
sends the given error to the initiator More... | |
void | sendSuccess () |
sends the encrypted connection to the initiator More... | |
void | callBack () |
a bail(), sendSuccess() helper: sends results to the initiator More... | |
void | disconnect () |
a bail(), sendSuccess() helper: stops monitoring the connection More... | |
void | countFailingConnection () |
updates connection usage history before the connection is closed More... | |
void | bypassCertValidator () |
If called the certificates validator will not used. More... | |
void | recordNegotiationDetails () |
EncryptorAnswer & | answer () |
convenience method to get to the answer fields More... | |
void | deleteThis (const char *aReason) |
void | mustStop (const char *aReason) |
bool | done () const |
the job is destroyed in callEnd() when done() More... | |
Protected Attributes | |
HttpRequestPointer | request |
peer connection trigger or cause More... | |
Comm::ConnectionPointer | serverConn |
TCP connection to the peer. More... | |
AccessLogEntryPointer | al |
info for the future access.log entry More... | |
AsyncCall::Pointer | callback |
we call this with the results More... | |
const char * | stopReason |
reason for forcing done() to be true More... | |
const char * | typeName |
kid (leaf) class name, for debugging More... | |
AsyncCall::Pointer | inCall |
the asynchronous call being handled, if any More... | |
bool | started_ = false |
Start() has finished successfully. More... | |
bool | swanSang_ = false |
swanSong() was called More... | |
Private Member Functions | |
CBDATA_CLASS (IcapPeerConnector) | |
virtual void | fillChecklist (ACLFilledChecklist &) const |
configure the given checklist (to reflect the current transaction state) More... | |
unsigned int | certDownloadNestingLevel () const |
the number of concurrent PeerConnector jobs waiting for us More... | |
void | sslCrtvdHandleReply (Ssl::CertValidationResponsePointer) |
Process response from cert validator helper. More... | |
Security::CertErrors * | sslCrtvdCheckForErrors (Ssl::CertValidationResponse const &, ErrorDetailPointer &) |
Check SSL errors returned from cert validator against sslproxy_cert_error access list. More... | |
bool | computeMissingCertificateUrls (const Connection &) |
finds URLs of (some) missing intermediate certificates or returns false More... | |
void | negotiateSsl () |
Comm::SetSelect() callback. Direct calls tickle/resume negotiations. More... | |
Static Private Member Functions | |
static void | NegotiateSsl (int fd, void *data) |
A wrapper for Comm::SetSelect() notifications. More... | |
Private Attributes | |
Adaptation::Icap::ServiceRep::Pointer | icapService |
Security::KeyLogger | keyLogger |
managers logging of the being-established TLS connection secrets More... | |
AsyncCall::Pointer | closeHandler |
we call this when the connection closed More... | |
time_t | negotiationTimeout |
the SSL connection timeout to use More... | |
time_t | startTime |
when the peer connector negotiation started More... | |
bool | useCertValidator_ |
std::queue< SBuf > | urlsOfMissingCerts |
The list of URLs where missing certificates should be downloaded. More... | |
unsigned int | certsDownloads |
the number of downloaded missing certificates More... | |
Ssl::X509_STACK_Pointer | downloadedCerts |
successfully downloaded intermediate certificates (omitted by the peer) More... | |
Security::IoResultPointer | suspendedError_ |
outcome of the last (failed and) suspended negotiation attempt (or nil) More... | |
JobWait< Downloader > | certDownloadWait |
waits for the missing certificate to be downloaded More... | |
Static Private Attributes | |
static const unsigned int | MaxCertsDownloads = 10 |
The maximum number of missing certificates a single PeerConnector may download. More... | |
static const unsigned int | MaxNestedDownloads = 3 |
The maximum number of inter-dependent Downloader jobs a worker may initiate. More... | |
Detailed Description
Definition at line 50 of file Xaction.cc.
Member Typedef Documentation
◆ Pointer
|
inherited |
Definition at line 53 of file PeerConnector.h.
Constructor & Destructor Documentation
◆ IcapPeerConnector()
|
inline |
Definition at line 53 of file Xaction.cc.
Member Function Documentation
◆ answer()
|
protectedinherited |
Definition at line 495 of file PeerConnector.cc.
References assert.
◆ bail()
|
protectedinherited |
Definition at line 504 of file PeerConnector.cc.
◆ bypassCertValidator()
|
inlineprotectedinherited |
Definition at line 166 of file PeerConnector.h.
References Security::PeerConnector::useCertValidator_.
◆ callBack()
|
protectedinherited |
Definition at line 556 of file PeerConnector.cc.
References conn, debugs, NULL, and ScheduleCallHere.
◆ callEnd()
|
virtualinherited |
called right after the called job method
Reimplemented in Adaptation::Icap::Xaction.
Definition at line 137 of file AsyncJob.cc.
References assert, AsyncCall::debugLevel, debugs, AsyncCall::debugSection, AsyncJob::done(), AsyncJob::inCall, NULL, AsyncJob::started_, AsyncJob::status(), AsyncJob::swanSang_, AsyncJob::swanSong(), and AsyncJob::typeName.
Referenced by Adaptation::Icap::Xaction::callEnd(), and AsyncJob::deleteThis().
◆ callException()
|
virtualinherited |
Reimplemented in Ftp::Server, Ipc::Inquirer, Ipc::Forwarder, Adaptation::Icap::Xaction, Adaptation::Icap::ServiceRep, Adaptation::Icap::ModXact, ClientHttpRequest, and ConnStateData.
Definition at line 128 of file AsyncJob.cc.
References cbdataReferenceValid(), debugs, Must, AsyncJob::mustStop(), and CbdataParent::toCbdata().
Referenced by ConnStateData::callException(), Adaptation::Icap::Xaction::callException(), Ipc::Forwarder::callException(), Ipc::Inquirer::callException(), and Ftp::Server::callException().
◆ callStart()
|
inherited |
called just before the called method
Definition at line 115 of file AsyncJob.cc.
References cbdataReferenceValid(), AsyncCall::debugLevel, debugs, AsyncCall::debugSection, AsyncJob::inCall, Must, AsyncJob::status(), CbdataParent::toCbdata(), and AsyncJob::typeName.
◆ canBeCalled()
|
inherited |
Definition at line 102 of file AsyncJob.cc.
References AsyncCall::cancel(), debugs, AsyncJob::inCall, and NULL.
◆ CBDATA_CLASS()
|
private |
◆ certDownloadingDone()
Definition at line 649 of file PeerConnector.cc.
References debugs, fd_table, Ssl::findIssuerCertificate(), Ssl::findIssuerUri(), Comm::IsConnOpen(), SBuf::length(), Must, NULL, and SBuf::rawContent().
Referenced by Security::PeerConnector::startCertDownloading().
◆ certDownloadNestingLevel()
|
privateinherited |
Definition at line 623 of file PeerConnector.cc.
References request().
◆ commCloseHandler()
|
protectedinherited |
Definition at line 109 of file PeerConnector.cc.
References CommCommonCbParams::data, debugs, ERR_SECURE_CONNECT_FAIL, CommCommonCbParams::fd, MakeNamedErrorDetail(), request(), and Http::scServiceUnavailable.
Referenced by Security::PeerConnector::PeerConnector().
◆ commTimeoutHandler()
|
protectedinherited |
Definition at line 127 of file PeerConnector.cc.
References debugs, ERR_SECURE_CONNECT_FAIL, MakeNamedErrorDetail(), request(), and Http::scGatewayTimeout.
Referenced by Security::PeerConnector::noteWantRead().
◆ computeMissingCertificateUrls()
|
privateinherited |
Definition at line 733 of file PeerConnector.cc.
References assert, debugs, and Ssl::missingChainCertificatesUrls().
◆ countFailingConnection()
|
protectedinherited |
Definition at line 528 of file PeerConnector.cc.
References assert, fd_table, fwdPconnPool, PconnPool::noteUses(), and peerConnectFailed().
◆ deleteThis()
|
protectedinherited |
Definition at line 50 of file AsyncJob.cc.
References asyncCall(), AsyncJob::callEnd(), debugs, AsyncJob::inCall, JobMemFun(), Must, NULL, AsyncJob::stopReason, and AsyncJob::typeName.
Referenced by ConnStateData::connStateClosed().
◆ disconnect()
|
protectedinherited |
Definition at line 539 of file PeerConnector.cc.
References comm_remove_close_handler(), commUnsetConnTimeout(), and Comm::IsConnOpen().
◆ done()
|
protectedinherited |
Definition at line 91 of file AsyncJob.cc.
References AsyncJob::doneAll(), NULL, and AsyncJob::stopReason.
Referenced by AsyncJob::callEnd(), HappyConnOpener::checkForNewConnection(), Downloader::downloadFinished(), and HappyConnOpener::maybeOpenPrimeConnection().
◆ doneAll()
|
protectedvirtualinherited |
Reimplemented from AsyncJob.
Definition at line 63 of file PeerConnector.cc.
References AsyncJob::doneAll().
◆ fillChecklist()
|
privatevirtual |
Reimplemented from Security::PeerConnector.
Definition at line 696 of file Xaction.cc.
References ACLFilledChecklist::dst_peer_name, Security::PeerConnector::fillChecklist(), and SBuf::isEmpty().
◆ getTlsContext()
|
inlinevirtual |
Must implemented by the kid classes to return the TLS context object to use for building the encryption context objects.
Implements Security::PeerConnector.
Definition at line 65 of file Xaction.cc.
References icapService.
◆ handleMissingCertificates()
|
protectedinherited |
Definition at line 707 of file PeerConnector.cc.
References assert, Ssl::VerifyCallbackParameters::At(), Ssl::VerifyCallbackParameters::callerHandlesMissingCertificates, fd_table, Comm::IsConnOpen(), and Must.
◆ handleNegotiationResult()
|
protectedinherited |
Definition at line 254 of file PeerConnector.cc.
References Security::IoResult::category, debugs, Security::IoResult::errorDescription, Security::IoResult::errorDetail, Security::IoResult::ioError, Security::IoResult::ioSuccess, Security::IoResult::ioWantRead, and Security::IoResult::ioWantWrite.
◆ handleStopRequest()
|
inlineinherited |
Definition at line 71 of file AsyncJob.h.
References AsyncJob::mustStop().
◆ initialize()
|
virtual |
- Returns
- true on successful TLS session initialization
Reimplemented from Security::PeerConnector.
Definition at line 679 of file Xaction.cc.
References assert, SBuf::c_str(), Security::PeerConnector::initialize(), Ssl::setClientSNI(), Security::SetSessionResumeData(), and ssl_ex_index_server.
◆ isSuspended()
|
inlineprotectedinherited |
Definition at line 111 of file PeerConnector.h.
References Security::PeerConnector::suspendedError_.
◆ mustStop()
|
protectedinherited |
Definition at line 70 of file AsyncJob.cc.
References debugs, AsyncJob::inCall, Must, NULL, AsyncJob::stopReason, and AsyncJob::typeName.
Referenced by HttpStateData::abortAll(), AsyncJob::callException(), HttpStateData::continueAfterParsingHeader(), HttpStateData::drop1xx(), HttpStateData::handleMoreRequestBodyAvailable(), AsyncJob::handleStopRequest(), HttpStateData::httpStateConnClosed(), HttpStateData::httpTimeout(), HttpStateData::proceedAfter1xx(), ConnStateData::proxyProtocolError(), HttpStateData::readReply(), HttpStateData::start(), and HttpStateData::wroteLast().
◆ negotiate()
|
protectedinherited |
Performs a single secure connection negotiation step. It is called multiple times until the negotiation finishes or aborts.
Definition at line 208 of file PeerConnector.cc.
References Ssl::VerifyCallbackParameters::At(), Security::Connect(), DBG_IMPORTANT, debugs, fd_table, Security::IoResult::ioSuccess, Comm::IsConnOpen(), and Must.
◆ negotiateSsl()
|
privateinherited |
Definition at line 447 of file PeerConnector.cc.
References CallJobHere.
◆ NegotiateSsl()
|
staticprivateinherited |
Definition at line 437 of file PeerConnector.cc.
◆ noteNegotiationDone()
|
virtual |
Called when the SSL negotiation to the server completed and the certificates validated using the cert validator.
- Parameters
-
error if not NULL the SSL negotiation was aborted with an error
Reimplemented from Security::PeerConnector.
Definition at line 704 of file Xaction.cc.
References error(), fd_table, and Security::MaybeGetSessionResumeData().
◆ noteNegotiationError()
|
protectedvirtualinherited |
Reimplemented in Ssl::PeekingPeerConnector.
Definition at line 483 of file PeerConnector.cc.
References ERR_SECURE_CONNECT_FAIL, ErrorState::NewForwarding(), request(), and Security::ErrorDetail::sysError().
Referenced by Ssl::PeekingPeerConnector::noteNegotiationError().
◆ noteWantRead()
|
protectedinherited |
Called when the openSSL SSL_connect fnction request more data from the remote SSL server. Sets the read timeout and sets the Squid COMM_SELECT_READ handler.
Definition at line 454 of file PeerConnector.cc.
References COMM_SELECT_READ, commSetConnTimeout(), Security::PeerConnector::commTimeoutHandler(), debugs, Comm::IsConnOpen(), JobCallback, Comm::MortalReadTimeout(), Must, and Comm::SetSelect().
◆ noteWantWrite()
|
protectedvirtualinherited |
Called when the openSSL SSL_connect function needs to write data to the remote SSL server. Sets the Squid COMM_SELECT_WRITE handler.
Reimplemented in Ssl::PeekingPeerConnector.
Definition at line 472 of file PeerConnector.cc.
References COMM_SELECT_WRITE, debugs, Comm::IsConnOpen(), Must, and Comm::SetSelect().
Referenced by Ssl::PeekingPeerConnector::checkForPeekAndSpliceMatched(), and Ssl::PeekingPeerConnector::noteWantWrite().
◆ recordNegotiationDetails()
|
protectedinherited |
Called after negotiation finishes to record connection details for logging
Definition at line 188 of file PeerConnector.cc.
References BIO_get_data(), fd_table, Comm::IsConnOpen(), Must, and Ssl::ServerBio::receivedHelloDetails().
◆ resumeNegotiation()
|
protectedinherited |
Definition at line 762 of file PeerConnector.cc.
References fd_table, Must, SQUID_TLS_ERR_CONNECT, and Ssl::VerifyConnCertificates().
◆ sendSuccess()
|
protectedinherited |
Definition at line 519 of file PeerConnector.cc.
References assert, and Comm::IsConnOpen().
◆ serverConnection()
|
inlineprotectedinherited |
Definition at line 148 of file PeerConnector.h.
References Security::PeerConnector::serverConn.
Referenced by Security::BlindPeerConnector::getTlsContext().
◆ sslCrtvdCheckForErrors()
|
privateinherited |
Checks errors in the cert. validator response against sslproxy_cert_error. The first honored error, if any, is returned via errDetails parameter. The method returns all seen errors except SSL_ERROR_NONE as Security::CertErrors.
Definition at line 379 of file PeerConnector.cc.
References acl_access, Acl::Answer::allowed(), assert, SquidConfig::cert_error, Config, dash_str, debugs, Ssl::CertValidationResponse::errors, ACLChecklist::fastCheck(), fd_table, Comm::IsConnOpen(), Must, NULL, CbDataList< C >::push_back_unique(), request(), SquidConfig::ssl_client, and ACLFilledChecklist::sslErrors.
◆ sslCrtvdHandleReply()
|
privateinherited |
Definition at line 328 of file PeerConnector.cc.
References debugs, ErrorState::detailError(), Debug::Enabled(), ERR_GATEWAY_FAILURE, ERR_SECURE_CONNECT_FAIL, Helper::Error, fd_table, Comm::IsConnOpen(), Must, NULL, Helper::Okay, RawPointer(), request(), Http::scInternalServerError, Http::scServiceUnavailable, server, ssl_ex_index_server, and ssl_ex_index_ssl_errors.
Referenced by Security::PeerConnector::sslFinalized().
◆ sslFinalized()
|
protectedinherited |
Called after negotiation has finished. Cleans up TLS/SSL state. Returns false if we are now waiting for the certs validation job. Otherwise, returns true, regardless of negotiation success/failure.
Definition at line 283 of file PeerConnector.cc.
References asyncCall(), DBG_IMPORTANT, debugs, Ssl::CertValidationRequest::domainName, ERR_GATEWAY_FAILURE, Ssl::CertValidationRequest::errors, fd_table, Comm::IsConnOpen(), Must, NULL, request(), Http::scInternalServerError, Ssl::CertValidationRequest::ssl, ssl_ex_index_server, ssl_ex_index_ssl_errors, Security::PeerConnector::sslCrtvdHandleReply(), Ssl::CertValidationHelper::Submit(), and Ssl::TheConfig.
◆ start()
|
protectedvirtualinherited |
Reimplemented from AsyncJob.
Definition at line 70 of file PeerConnector.cc.
References assert, debugs, ERR_CONNECT_FAIL, fd_table, Comm::IsConnOpen(), request(), Http::scBadGateway, and AsyncJob::start().
◆ Start()
|
staticinherited |
Promises to start the configured job (eventually). The job is deemed to be running asynchronously beyond this point, so the caller should only access the job object via AsyncCalls rather than directly.
swanSong() is only called for jobs for which this method has returned successfully (i.e. without throwing).
Definition at line 24 of file AsyncJob.cc.
References CallJobHere, AsyncJob::start(), and AsyncJob::started_.
Referenced by Ftp::Server::AcceptCtrlConnection(), clientListenerConnectionOpened(), Ipc::Coordinator::handleCacheMgrRequest(), Ipc::Coordinator::handleSnmpRequest(), httpAccept(), httpsAccept(), httpStart(), idnsInitVC(), Ftp::Gateway::listenForDataChannel(), Ftp::Server::listenForDataConnection(), Log::TcpLogger::Open(), peerProbeConnect(), Mgr::FunAction::respond(), Mgr::InfoAction::respond(), Ipc::SendMessage(), Mgr::Inquirer::sendResponse(), snmpConstructReponse(), SquidMain(), CacheManager::start(), Adaptation::AccessCheck::Start(), Rock::Rebuild::Start(), JobWaitBase::start_(), BodyPipe::startAutoConsumptionIfNeeded(), Ftp::StartGateway(), Ftp::StartRelay(), PeerPoolMgrsRr::syncConfig(), and Rock::SwapDir::updateHeaders().
◆ startCertDownloading()
|
protectedinherited |
Definition at line 636 of file PeerConnector.cc.
References asyncCall(), and Security::PeerConnector::certDownloadingDone().
◆ status()
|
protectedvirtualinherited |
for debugging, starts with space
Reimplemented from AsyncJob.
Definition at line 583 of file PeerConnector.cc.
References MemBuf::append(), Packable::appendf(), MemBuf::content(), Comm::IsConnOpen(), NULL, MemBuf::reset(), and MemBuf::terminate().
◆ suspendNegotiation()
|
protectedinherited |
Suspends TLS negotiation to download the missing certificates
- Parameters
-
lastError an error to handle when resuming negotiations
Definition at line 752 of file PeerConnector.cc.
◆ swanSong()
|
protectedvirtualinherited |
Reimplemented from AsyncJob.
Definition at line 568 of file PeerConnector.cc.
References assert, ERR_GATEWAY_FAILURE, request(), Http::scInternalServerError, and AsyncJob::swanSong().
◆ toCbdata()
|
pure virtualinherited |
Implemented in HttpStateData, ClientHttpRequest, and BodySink.
Referenced by AsyncJob::callException(), and AsyncJob::callStart().
Member Data Documentation
◆ al
|
protectedinherited |
Definition at line 177 of file PeerConnector.h.
◆ callback
|
protectedinherited |
Definition at line 178 of file PeerConnector.h.
Referenced by Security::PeerConnector::PeerConnector().
◆ certDownloadWait
|
privateinherited |
Definition at line 223 of file PeerConnector.h.
◆ certsDownloads
|
privateinherited |
Definition at line 213 of file PeerConnector.h.
◆ closeHandler
|
privateinherited |
Definition at line 207 of file PeerConnector.h.
Referenced by Security::PeerConnector::PeerConnector().
◆ downloadedCerts
|
privateinherited |
Definition at line 217 of file PeerConnector.h.
◆ icapService
|
private |
Definition at line 73 of file Xaction.cc.
Referenced by getTlsContext().
◆ id
|
inherited |
Definition at line 73 of file AsyncJob.h.
◆ inCall
|
protectedinherited |
Definition at line 81 of file AsyncJob.h.
Referenced by AsyncJob::callEnd(), AsyncJob::callStart(), AsyncJob::canBeCalled(), AsyncJob::deleteThis(), and AsyncJob::mustStop().
◆ keyLogger
|
privateinherited |
Definition at line 205 of file PeerConnector.h.
◆ MaxCertsDownloads
|
staticprivateinherited |
Definition at line 199 of file PeerConnector.h.
◆ MaxNestedDownloads
|
staticprivateinherited |
Definition at line 202 of file PeerConnector.h.
◆ negotiationTimeout
|
privateinherited |
Definition at line 208 of file PeerConnector.h.
◆ noteFwdPconnUse
|
inherited |
Definition at line 72 of file PeerConnector.h.
Referenced by FwdState::secureConnectionToPeer().
◆ request
|
protectedinherited |
Definition at line 175 of file PeerConnector.h.
Referenced by Security::BlindPeerConnector::BlindPeerConnector(), and Ssl::PeekingPeerConnector::PeekingPeerConnector().
◆ serverConn
|
protectedinherited |
Definition at line 176 of file PeerConnector.h.
Referenced by Security::PeerConnector::PeerConnector(), and Security::PeerConnector::serverConnection().
◆ started_
|
protectedinherited |
Definition at line 83 of file AsyncJob.h.
Referenced by AsyncJob::~AsyncJob(), AsyncJob::callEnd(), and AsyncJob::Start().
◆ startTime
|
privateinherited |
Definition at line 209 of file PeerConnector.h.
◆ stopReason
|
protectedinherited |
Definition at line 79 of file AsyncJob.h.
Referenced by AsyncJob::deleteThis(), AsyncJob::done(), AsyncJob::mustStop(), AsyncJob::status(), and HappyConnOpener::status().
◆ suspendedError_
|
privateinherited |
Definition at line 221 of file PeerConnector.h.
Referenced by Security::PeerConnector::isSuspended().
◆ swanSang_
|
protectedinherited |
Definition at line 84 of file AsyncJob.h.
Referenced by AsyncJob::~AsyncJob(), and AsyncJob::callEnd().
◆ typeName
|
protectedinherited |
Definition at line 80 of file AsyncJob.h.
Referenced by AsyncJob::AsyncJob(), Adaptation::Icap::Xaction::Xaction(), AsyncJob::~AsyncJob(), AsyncJob::callEnd(), AsyncJob::callStart(), AsyncJob::deleteThis(), and AsyncJob::mustStop().
◆ urlsOfMissingCerts
|
privateinherited |
Definition at line 212 of file PeerConnector.h.
◆ useCertValidator_
|
privateinherited |
whether the certificate validator should bypassed
Definition at line 210 of file PeerConnector.h.
Referenced by Security::PeerConnector::bypassCertValidator().
The documentation for this class was generated from the following file:
- src/adaptation/icap/Xaction.cc