Parsing.h \
store_key_md5.h \
store_key_md5.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
String.cc \
SquidNew.cc \
tests/stub_time.cc \
String.cc \
store_dir.cc \
StoreIOState.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
StoreSwapLogData.cc \
store_key_md5.h \
store_key_md5.cc \
store_swapout.cc \
StoreFileSystem.cc \
StoreIOState.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
StoreSwapLogData.cc \
tools.h \
tools.cc \
- tunnel.cc \
+ tests/stub_tunnel.cc \
tests/stub_SwapDir.cc \
MemStore.cc \
$(UNLINKDSOURCE) \
stmem.cc \
StoreFileSystem.cc \
StoreIOState.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
StoreSwapLogData.cc \
store_dir.cc \
store_io.cc \
store_swapout.cc \
StoreFileSystem.cc \
StoreIOState.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
StoreSwapLogData.cc \
String.cc \
tests/stub_SwapDir.cc \
time.cc \
tools.h \
tools.cc \
- tunnel.cc \
+ tests/stub_tunnel.cc \
MemStore.cc \
$(UNLINKDSOURCE) \
url.cc \
store_swapout.cc \
StoreFileSystem.cc \
StoreIOState.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
StoreSwapLogData.cc \
String.cc \
StrList.h \
time.cc \
tools.h \
tools.cc \
- tunnel.cc \
+ tests/stub_tunnel.cc \
MemStore.cc \
$(UNLINKDSOURCE) \
url.cc \
store_swapout.cc \
StoreFileSystem.cc \
StoreIOState.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
StoreSwapLogData.cc \
String.cc \
StrList.h \
time.cc \
tools.h \
tools.cc \
- tunnel.cc \
+ tests/stub_tunnel.cc \
$(UNLINKDSOURCE) \
url.cc \
URLScheme.cc \
store_swapout.cc \
StoreFileSystem.cc \
StoreIOState.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
StoreSwapLogData.cc \
StrList.h \
StrList.cc \
event.cc \
tools.h \
tools.cc \
- tunnel.cc \
+ tests/stub_tunnel.cc \
tests/stub_SwapDir.cc \
MemStore.cc \
url.cc \
store_io.cc \
store_swapout.cc \
StoreIOState.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
StoreSwapLogData.cc \
store_key_md5.h \
store_key_md5.cc \
store_swapout.cc \
StoreFileSystem.cc \
StoreIOState.cc \
- StoreMeta.cc \
- StoreMetaMD5.cc \
- StoreMetaSTD.cc \
- StoreMetaSTDLFS.cc \
+ tests/stub_StoreMeta.cc \
StoreMetaUnpacker.cc \
- StoreMetaURL.cc \
- StoreMetaVary.cc \
StoreSwapLogData.cc \
String.cc \
StrList.h \
tests/stub_time.cc \
tools.h \
tools.cc \
- tunnel.cc \
+ tests/stub_tunnel.cc \
url.cc \
URLScheme.cc \
urn.h \
tests/stub_SwapDir.cc \
tests/stub_stmem.cc \
tests/stub_store.cc \
+ tests/stub_StoreMeta.cc \
tests/stub_store_client.cc \
tests/stub_store_digest.cc \
tests/stub_store_rebuild.cc \
tests/stub_store_swapout.cc \
tests/stub_time.cc \
tests/stub_tools.cc \
+ tests/stub_tunnel.cc \
tests/stub_wccp2.cc \
tests/stub_whois.cc \
tests/stub_wordlist.cc
--- /dev/null
+#include "squid.h"
+
+#define STUB_API "StoreMeta.cc"
+#include "tests/STUB.h"
+
+#include "StoreMeta.h"
+
+bool StoreMeta::validType(char) STUB_RETVAL(false)
+bool StoreMeta::validLength(int) const STUB_RETVAL(false)
+StoreMeta * StoreMeta::Factory (char, size_t, void const *) STUB_RETVAL(NULL)
+void StoreMeta::FreeList(StoreMeta **) STUB
+StoreMeta ** StoreMeta::Add(StoreMeta **, StoreMeta *) STUB_RETVAL(NULL)
+bool StoreMeta::checkConsistency(StoreEntry *) const STUB_RETVAL(false)
+
--- /dev/null
+#include "squid.h"
+
+#define STUB_API "tunnel.cc"
+#include "tests/STUB.h"
+
+#include "FwdState.h"
+class ClientHttpRequest;
+
+void tunnelStart(ClientHttpRequest *, int64_t *, int *, const AccessLogEntryPointer &al) STUB
+