]> git.ipfire.org Git - thirdparty/squid.git/blob - src/clients/forward.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / clients / 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_CLIENTS_FORWARD_H
10 #define SQUID_CLIENTS_FORWARD_H
11
12 #include "sbuf/forward.h"
13
14 class FwdState;
15 class HttpRequest;
16
17 class AsyncJob;
18 template <class Cbc> class CbcPointer;
19 typedef CbcPointer<AsyncJob> AsyncJobPointer;
20
21 namespace Http
22 {
23 class Tunneler;
24 class TunnelerAnswer;
25 }
26
27 namespace Ftp
28 {
29
30 /// A new FTP Gateway job
31 void StartGateway(FwdState *const fwdState);
32
33 /// A new FTP Relay job
34 void StartRelay(FwdState *const fwdState);
35
36 /** Construct an URI with leading / in PATH portion for use by CWD command
37 * possibly others. FTP encodes absolute paths as beginning with '/'
38 * after the initial URI path delimiter, which happens to be / itself.
39 * This makes FTP absolute URI appear as: ftp:host:port//root/path
40 * To encompass older software which compacts multiple // to / in transit
41 * We use standard URI-encoding on the second / making it
42 * ftp:host:port/%2froot/path AKA 'the FTP %2f hack'.
43 *
44 * TODO: Should be an AnyP::Uri member
45 */
46 const SBuf &UrlWith2f(HttpRequest *);
47
48 } // namespace Ftp
49
50 #endif /* SQUID_CLIENTS_FORWARD_H */
51