]> git.ipfire.org Git - thirdparty/squid.git/blob - src/internal.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / internal.h
1 /*
2 * Copyright (C) 1996-2014 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 /*
10 * DEBUG: section 76 Internal Squid Object handling
11 * AUTHOR: Duane, Alex, Henrik
12 */
13
14 #ifndef SQUID_INTERNAL_H_
15 #define SQUID_INTERNAL_H_
16
17 #include "comm/forward.h"
18 class HttpRequest;
19 class StoreEntry;
20
21 void internalStart(const Comm::ConnectionPointer &clientConn, HttpRequest *, StoreEntry *);
22 int internalCheck(const char *urlpath);
23 int internalStaticCheck(const char *urlpath);
24 char *internalLocalUri(const char *dir, const char *name);
25 char *internalRemoteUri(const char *, unsigned short, const char *, const char *);
26 const char *internalHostname(void);
27 int internalHostnameIs(const char *);
28
29 #endif /* SQUID_INTERNAL_H_ */
30