PingData.h \
protos.h \
redirect.cc \
+ refresh.h \
refresh.cc \
RemovalPolicy.cc \
RemovalPolicy.h \
peer_sourcehash.cc \
peer_userhash.cc \
redirect.cc \
+ refresh.h \
refresh.cc \
RemovalPolicy.cc \
Server.cc \
mem.cc \
Packer.cc \
Parsing.cc \
+ refresh.h \
refresh.cc \
RemovalPolicy.cc \
StatCounters.h \
peer_sourcehash.cc \
peer_userhash.cc \
redirect.cc \
+ refresh.h \
refresh.cc \
RemovalPolicy.cc \
Server.cc \
peer_userhash.cc \
RemovalPolicy.cc \
redirect.cc \
+ refresh.h \
refresh.cc \
Server.cc \
$(SNMP_SOURCE) \
peer_userhash.cc \
pconn.cc \
redirect.cc \
+ refresh.h \
refresh.cc \
RemovalPolicy.cc \
Server.cc \
peer_sourcehash.cc \
peer_userhash.cc \
redirect.cc \
+ refresh.h \
refresh.cc \
RemovalPolicy.cc \
Server.cc \
Packer.cc \
Parsing.cc \
RemovalPolicy.cc \
+ refresh.h \
refresh.cc \
StatCounters.h \
StatCounters.cc \
tests/stub_errorpage.cc \
tests/stub_HttpRequest.cc \
tests/stub_access_log.cc \
+ refresh.h \
refresh.cc \
tests/stub_store_client.cc \
tests/stub_tools.cc \
tests/stub_errorpage.cc \
tests/stub_HttpRequest.cc \
tests/stub_access_log.cc \
+ refresh.h \
refresh.cc \
tests/stub_MemStore.cc \
tests/stub_Port.cc \
tests/stub_errorpage.cc \
tests/stub_HttpRequest.cc \
tests/stub_access_log.cc \
+ refresh.h \
refresh.cc \
tests/stub_store_client.cc \
tests/stub_store_stats.cc \
peer_sourcehash.cc \
peer_userhash.cc \
redirect.cc \
+ refresh.h \
refresh.cc \
RemovalPolicy.cc \
Server.cc \
SQUIDCEXTERN void redirectInit(void);
SQUIDCEXTERN void redirectShutdown(void);
-extern void refreshAddToList(const char *, int, time_t, int, time_t);
-extern int refreshIsCachable(const StoreEntry *);
-extern int refreshCheckHTTP(const StoreEntry *, HttpRequest *);
-extern int refreshCheckICP(const StoreEntry *, HttpRequest *);
-extern int refreshCheckHTCP(const StoreEntry *, HttpRequest *);
-extern int refreshCheckDigest(const StoreEntry *, time_t delta);
-extern time_t getMaxAge(const char *url);
-extern void refreshInit(void);
-extern const refresh_t *refreshLimits(const char *url);
extern void shut_down(int);
extern void rotate_logs(int);
--- /dev/null
+/*
+ * DEBUG: section
+ * AUTHOR:
+ *
+ * SQUID Web Proxy Cache http://www.squid-cache.org/
+ * ----------------------------------------------------------
+ *
+ * Squid is the result of efforts by numerous individuals from
+ * the Internet community; see the CONTRIBUTORS file for full
+ * details. Many organizations have provided support for Squid's
+ * development; see the SPONSORS file for full details. Squid is
+ * Copyrighted (C) 2001 by the Regents of the University of
+ * California; see the COPYRIGHT file for full details. Squid
+ * incorporates software developed and/or copyrighted by other
+ * sources; see the CREDITS file for full details.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
+ *
+ */
+
+
+#ifndef SQUID_REFRESH_H_
+#define SQUID_REFRESH_H_
+
+extern void refreshAddToList(const char *, int, time_t, int, time_t);
+extern int refreshIsCachable(const StoreEntry *);
+extern int refreshCheckHTTP(const StoreEntry *, HttpRequest *);
+extern int refreshCheckICP(const StoreEntry *, HttpRequest *);
+extern int refreshCheckHTCP(const StoreEntry *, HttpRequest *);
+extern int refreshCheckDigest(const StoreEntry *, time_t delta);
+extern time_t getMaxAge(const char *url);
+extern void refreshInit(void);
+extern const refresh_t *refreshLimits(const char *url);
+
+
+
+#endif /* SQUID_REFRESH_H_ */