]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Summary: Implement DelayTagged::Id::delayRead
authorrobertc <>
Thu, 22 May 2003 16:14:09 +0000 (16:14 +0000)
committerrobertc <>
Thu, 22 May 2003 16:14:09 +0000 (16:14 +0000)
Keywords:

Implement DelayTagged::Id::delayRead

src/DelayTagged.cc
src/DelayTagged.h

index 25c3bb8950e69e5b56581d001e3cf831ceece504..cefce2b5ab27e6e7765fc3264cca5a97aa0cd87e 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: DelayTagged.cc,v 1.1 2003/05/20 12:17:38 robertc Exp $
+ * $Id: DelayTagged.cc,v 1.2 2003/05/22 10:14:09 robertc Exp $
  *
  * DEBUG: section 77    Delay Pools
  * AUTHOR: Robert Collins <robertc@squid-cache.org>
@@ -242,4 +242,10 @@ DelayTagged::Id::bytesIn(int qty)
     theBucket->theBucket.bytesIn(qty);
 }
 
+void
+DelayTagged::Id::delayRead(DeferredRead const &aRead)
+{
+    theTagged->delayRead(aRead);
+}
+
 #endif
index 1a4c73eec62112556d69e18d8549a4492bdae1f6..9b5186624d9bb6674d9d5320970f8a568bdc8553 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: DelayTagged.h,v 1.1 2003/05/20 12:17:38 robertc Exp $
+ * $Id: DelayTagged.h,v 1.2 2003/05/22 10:14:09 robertc Exp $
  *
  * DEBUG: section 77    Delay Pools
  * AUTHOR: Robert Collins <robertc@squid-cache.org>
@@ -95,6 +95,7 @@ class Id:public DelayIdComposite
         ~Id();
         virtual int bytesWanted (int min, int max) const;
         virtual void bytesIn(int qty);
+        virtual void delayRead(DeferredRead const &);
 
     private:
         DelayTagged::Pointer theTagged;