]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
StoreIOState typedef fixes for Null storage scheme
authorwessels <>
Tue, 23 May 2006 06:48:13 +0000 (06:48 +0000)
committerwessels <>
Tue, 23 May 2006 06:48:13 +0000 (06:48 +0000)
src/fs/null/store_null.cc
src/fs/null/store_null.h

index cbaa87de646ddaf1d10814d24ee0e660d8a01a26..25bfee64a605203be358bf32a4e77ac9f544a659 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store_null.cc,v 1.8 2005/01/03 16:08:27 robertc Exp $
+ * $Id: store_null.cc,v 1.9 2006/05/23 00:48:13 wessels Exp $
  *
  * DEBUG: section 47    Store Directory Routines
  * AUTHOR: Duane Wessels
@@ -61,14 +61,14 @@ NullSwapDir::init()
 }
 
 StoreIOState::Pointer
-NullSwapDir::createStoreIO(StoreEntry &, STFNCB *, STIOCB *, void *)
+NullSwapDir::createStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *)
 {
     fatal ("Attempt to get a StoreIO from the NULL store!\n");
     return NULL;
 }
 
 StoreIOState::Pointer
-NullSwapDir::openStoreIO(StoreEntry &, STFNCB *, STIOCB *, void *)
+NullSwapDir::openStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *)
 {
     fatal ("Attempt to get a StoreIO from the NULL store!\n");
     return NULL;
index 5dbde9a04727949ea3a4e050333e7198d370af0c..445b578a6c96cba93824cbeb274c1eeea301755a 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store_null.h,v 1.2 2005/01/03 16:08:27 robertc Exp $
+ * $Id: store_null.h,v 1.3 2006/05/23 00:48:13 wessels Exp $
  *
  * SQUID Web Proxy Cache          http://www.squid-cache.org/
  * ----------------------------------------------------------
@@ -45,8 +45,8 @@ public:
     NullSwapDir();
     virtual void init();
     virtual int canStore(StoreEntry const &)const;
-    virtual StoreIOState::Pointer createStoreIO(StoreEntry &, STFNCB *, STIOCB *, void *);
-    virtual StoreIOState::Pointer openStoreIO(StoreEntry &, STFNCB *, STIOCB *, void *);
+    virtual StoreIOState::Pointer createStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *);
+    virtual StoreIOState::Pointer openStoreIO(StoreEntry &, StoreIOState::STFNCB *, StoreIOState::STIOCB *, void *);
     virtual void parse(int, char*);
     virtual void reconfigure (int, char *);
     virtual StoreSearch *search(String const url, HttpRequest *);