]> git.ipfire.org Git - thirdparty/squid.git/blame - src/internal.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / internal.h
CommitLineData
bbc27441 1/*
4ac4a490 2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
bbc27441
AJ
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
fc54b8d2
FC
9/*
10 * DEBUG: section 76 Internal Squid Object handling
11 * AUTHOR: Duane, Alex, Henrik
fc54b8d2
FC
12 */
13
fc54b8d2
FC
14#ifndef SQUID_INTERNAL_H_
15#define SQUID_INTERNAL_H_
16
17#include "comm/forward.h"
92e8f3ad 18#include "sbuf/forward.h"
51b5dcf5 19
fc54b8d2
FC
20class HttpRequest;
21class StoreEntry;
22
8a648e8d 23void internalStart(const Comm::ConnectionPointer &clientConn, HttpRequest *, StoreEntry *);
51b5dcf5
AJ
24bool internalCheck(const SBuf &urlPath);
25bool internalStaticCheck(const SBuf &urlPath);
26char *internalLocalUri(const char *dir, const SBuf &name);
27char *internalRemoteUri(const char *, unsigned short, const char *, const SBuf &);
8a648e8d
FC
28const char *internalHostname(void);
29int internalHostnameIs(const char *);
fc54b8d2 30
fc54b8d2 31#endif /* SQUID_INTERNAL_H_ */
f53969cc 32