]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
broken() is now implemented by Adaptation::Service().
authorAlex Rousskov <rousskov@measurement-factory.com>
Thu, 8 May 2008 20:06:07 +0000 (14:06 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Thu, 8 May 2008 20:06:07 +0000 (14:06 -0600)
src/ICAP/ICAPServiceRep.cc
src/ICAP/ICAPServiceRep.h

index e63c81a5ea2747adc586923871fb7d1448943df5..d9b0833f09c5a1cc2a5141e7d10e563178e4885d 100644 (file)
@@ -110,11 +110,6 @@ bool ICAPServiceRep::up() const
     return self != NULL && !isSuspended && hasOptions();
 }
 
-bool ICAPServiceRep::broken() const
-{
-    return probed() && !up();
-}
-
 bool ICAPServiceRep::wantsUrl(const String &urlPath) const
 {
     Must(hasOptions());
index ea9bd00ee2cbaa29518001cbacf175dcd9f133a9..7c8011f77cfe8dbbdacbb43baefb4e738b90c4cf 100644 (file)
@@ -89,7 +89,6 @@ public:
     void invalidate(); // call when the service is no longer needed or valid
 
     bool probed() const; // see comments above
-    bool broken() const; // see comments above
     bool up() const; // see comments above
 
     virtual Adaptation::Initiate *makeXactLauncher(Adaptation::Initiator *, HttpMsg *virginHeader, HttpRequest *virginCause);