Squid Web Cache master
Loading...
Searching...
No Matches
internal.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 1996-2025 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_SRC_INTERNAL_H
15#define SQUID_SRC_INTERNAL_H
16
17#include "comm/forward.h"
18#include "log/forward.h"
19#include "sbuf/forward.h"
20
21class HttpRequest;
22class StoreEntry;
23
25bool internalCheck(const SBuf &urlPath);
26bool internalStaticCheck(const SBuf &urlPath);
27char *internalLocalUri(const char *dir, const SBuf &name);
28char *internalRemoteUri(bool, const char *, unsigned short, const char *, const SBuf &);
29const char *internalHostname(void);
30bool internalHostnameIs(const SBuf &);
31
34bool ForSomeCacheManager(const SBuf &);
35
36#endif /* SQUID_SRC_INTERNAL_H */
37
Definition SBuf.h:94
bool internalHostnameIs(const SBuf &)
Definition internal.cc:165
void internalStart(const Comm::ConnectionPointer &clientConn, HttpRequest *, StoreEntry *, const AccessLogEntryPointer &)
Definition internal.cc:32
char * internalRemoteUri(bool, const char *, unsigned short, const char *, const SBuf &)
Definition internal.cc:95
bool internalStaticCheck(const SBuf &urlPath)
Definition internal.cc:79
bool ForSomeCacheManager(const SBuf &)
Definition internal.cc:86
char * internalLocalUri(const char *dir, const SBuf &name)
Definition internal.cc:139
bool internalCheck(const SBuf &urlPath)
Definition internal.cc:72
const char * internalHostname(void)
Definition internal.cc:149