]> git.ipfire.org Git - thirdparty/squid.git/blob - src/http/one/forward.h
Bug 5428: Warn if pkg-config is not found (#1902)
[thirdparty/squid.git] / src / http / one / forward.h
1 /*
2 * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #ifndef SQUID_SRC_HTTP_ONE_FORWARD_H
10 #define SQUID_SRC_HTTP_ONE_FORWARD_H
11
12 #include "base/RefCount.h"
13 #include "parser/forward.h"
14 #include "sbuf/forward.h"
15
16 namespace Http {
17 namespace One {
18
19 class Tokenizer;
20
21 class Parser;
22 typedef RefCount<Http::One::Parser> ParserPointer;
23
24 class TeChunkedParser;
25
26 class RequestParser;
27 typedef RefCount<Http::One::RequestParser> RequestParserPointer;
28
29 class ResponseParser;
30 typedef RefCount<Http::One::ResponseParser> ResponseParserPointer;
31
32 /// CRLF textual representation
33 const SBuf &CrLf();
34
35 using ::Parser::InsufficientInput;
36
37 } // namespace One
38 } // namespace Http
39
40 namespace Http1 = Http::One;
41
42 #endif /* SQUID_SRC_HTTP_ONE_FORWARD_H */
43