]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Add missing http/forward.h
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 23 Dec 2013 16:23:04 +0000 (08:23 -0800)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 23 Dec 2013 16:23:04 +0000 (08:23 -0800)
src/http/forward.h [new file with mode: 0644]

diff --git a/src/http/forward.h b/src/http/forward.h
new file mode 100644 (file)
index 0000000..80258dc
--- /dev/null
@@ -0,0 +1,26 @@
+#ifndef SQUID_SRC_HTTP_FORWARD_H
+#define SQUID_SRC_HTTP_FORWARD_H
+
+#include "base/RefCount.h"
+
+// TODO move these classes into Http namespace
+class HttpRequestMethod;
+typedef RefCount<HttpRequestMethod> HttpRequestMethodPointer;
+
+class HttpRequest;
+typedef RefCount<HttpRequest> HttpRequestPointer;
+
+class HttpReply;
+typedef RefCount<HttpReply> HttpReplyPointer;
+
+namespace Http {
+
+class Http1Parser;
+typedef RefCount<Http1Parser> Http1ParserPointer;
+
+//class ParserBase;
+//typedef RefCount<Http::ParserBase> HttpParserPointer;
+
+} // namespace Http
+
+#endif /* SQUID_SRC_HTTP_FORWARD_H */