]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Synced after adding HttpMsg::clone().
authorAlex Rousskov <rousskov@measurement-factory.com>
Tue, 30 Sep 2008 17:15:28 +0000 (11:15 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Tue, 30 Sep 2008 17:15:28 +0000 (11:15 -0600)
src/tests/stub_HttpReply.cc
src/tests/stub_HttpRequest.cc

index 51b8a2db2aef775e384f5bcdf3a7a73c0e269826..1e183284282b331693f5c9c2794e1148a2530d75 100644 (file)
@@ -108,3 +108,10 @@ HttpReply::hdrCacheInit()
 {
     fatal ("Not implemented");
 }
+
+HttpReply *
+HttpReply::clone() const
+{
+    fatal("Not implemented");
+    return NULL;
+}
index 15e2eac81557e84f975eb723e570a01980977734..a3f65ce7a8cd13ed00d6bef8208ff0d47aa88882 100644 (file)
@@ -94,6 +94,13 @@ HttpRequest::parseFirstLine(const char *start, const char *end)
     return false;
 }
 
+HttpRequest *
+HttpRequest::clone() const
+{
+    fatal("Not implemented");
+    return NULL;
+}
+
 /*
  * DO NOT MODIFY:
  * arch-tag: dd894aa8-63cc-4543-92d9-1079a18bee11