From: Alex Rousskov Date: Fri, 22 Apr 2016 17:11:54 +0000 (-0600) Subject: Removed unused methods. X-Git-Tag: SQUID_4_0_11~29^2~18 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a95cfb67a2e3b3a6b9bc0d3a75d2230cb1c79c6c;p=thirdparty%2Fsquid.git Removed unused methods. --- diff --git a/src/ssl/bio.h b/src/ssl/bio.h index 5e183d7172..4b05235bb5 100644 --- a/src/ssl/bio.h +++ b/src/ssl/bio.h @@ -146,11 +146,6 @@ public: /// Return the TLS Details advertised by TLS server. const Security::TlsDetails::Pointer &receivedHelloDetails() const {return parser_.details;} - /// Return true if the Server hello message received - bool gotHello() const { return (parser_.parseDone && !parser_.parseError); } - - /// Return true if the Server Hello parsing failed - bool gotHelloFailed() const { return (parser_.parseDone && parser_.parseError); } const Ssl::X509_STACK_Pointer &serverCertificatesIfAny() { return parser_.serverCertificates; } /* XXX: may be nil */