upgrade to Squid 2.5.PRE6
- PF patches integrated
This commit is contained in:
parent
9acaeefab9
commit
130f964688
@ -1,10 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.41 2002/03/21 21:17:54 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.42 2002/04/17 18:03:21 brad Exp $
|
||||
|
||||
COMMENT= "WWW and FTP proxy cache and accelerator"
|
||||
|
||||
DISTNAME= squid-2.5.PRE5
|
||||
DISTNAME= squid-2.5.PRE6
|
||||
CATEGORIES= www
|
||||
NEED_VERSION= 1.500
|
||||
NEED_VERSION= 1.522
|
||||
MASTER_SITES= http://www.squid-cache.org/Versions/v2/2.5/
|
||||
DIST_SUBDIR= squid
|
||||
|
||||
@ -44,6 +44,6 @@ post-extract:
|
||||
@rm -f ${WRKSRC}/include/autoconf.h
|
||||
|
||||
post-install:
|
||||
@chown -R root:wheel ${PREFIX}/share/examples/squid
|
||||
@chown -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/examples/squid
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (squid/squid-2.5.PRE5.tar.gz) = b2b45ceff235b4f0cabd0474dff3b252
|
||||
RMD160 (squid/squid-2.5.PRE5.tar.gz) = 9a9a49fc3b7408c55e3bd0e1ce72e1e4ee71eaa0
|
||||
SHA1 (squid/squid-2.5.PRE5.tar.gz) = 584a290d45f88260bd9176e5294b8112a447a7da
|
||||
MD5 (squid/squid-2.5.PRE6.tar.gz) = 56717ab55b898fcf82a28f7708e7c4f7
|
||||
RMD160 (squid/squid-2.5.PRE6.tar.gz) = 480daabf1cdd775eaa214642ff23d927d09c9afc
|
||||
SHA1 (squid/squid-2.5.PRE6.tar.gz) = 2cb85afe2e82d6f21707189b66d8f87ac84d1a78
|
||||
|
@ -1,34 +1,7 @@
|
||||
$OpenBSD: patch-configure_in,v 1.2 2002/03/19 15:20:07 brad Exp $
|
||||
--- configure.in.orig Thu Feb 14 14:10:34 2002
|
||||
+++ configure.in Sat Mar 16 12:34:28 2002
|
||||
@@ -704,6 +704,18 @@ AC_ARG_ENABLE(ipf-transparent,
|
||||
fi
|
||||
])
|
||||
|
||||
+dnl Enable PF Transparent Proxy
|
||||
+AC_ARG_ENABLE(pf-transparent,
|
||||
+[ --enable-pf-transparent
|
||||
+ Enable Transparent Proxy support for systems
|
||||
+ using PF network address redirection.],
|
||||
+[ if test "$enableval" = "yes" ; then
|
||||
+ echo "PF Transparent Proxy enabled"
|
||||
+ AC_DEFINE(PF_TRANSPARENT)
|
||||
+ PF_TRANSPARENT="yes"
|
||||
+ fi
|
||||
+])
|
||||
+
|
||||
dnl Enable Linux Netfilter (2.4) Transparent Proxy
|
||||
AC_ARG_ENABLE(linux-netfilter,
|
||||
[ --enable-linux-netfilter
|
||||
@@ -1067,6 +1079,7 @@ AC_CHECK_HEADERS( \
|
||||
memory.h \
|
||||
mount.h \
|
||||
net/if.h \
|
||||
+ net/pfvar.h \
|
||||
netdb.h \
|
||||
netinet/if_ether.h \
|
||||
netinet/in.h \
|
||||
@@ -1454,18 +1467,6 @@ dnl during compile.
|
||||
$OpenBSD: patch-configure_in,v 1.3 2002/04/17 18:03:21 brad Exp $
|
||||
--- configure.in.orig Sun Apr 14 18:31:20 2002
|
||||
+++ configure.in Wed Apr 17 13:19:18 2002
|
||||
@@ -1492,18 +1492,6 @@ dnl during compile.
|
||||
;;
|
||||
esac
|
||||
|
||||
@ -47,29 +20,3 @@ $OpenBSD: patch-configure_in,v 1.2 2002/03/19 15:20:07 brad Exp $
|
||||
# Recommended by Balint Nagy Endre <bne@CareNet.hu>
|
||||
case "$host" in
|
||||
*-univel-sysv4.2MP)
|
||||
@@ -1620,6 +1621,25 @@ if test "$IPF_TRANSPARENT" ; then
|
||||
fi
|
||||
if test "$IPF_TRANSPARENT" = "no" ; then
|
||||
echo "WARNING: Cannot find necessary IP-Filter header files"
|
||||
+ echo " Transparent Proxy support WILL NOT be enabled"
|
||||
+ sleep 10
|
||||
+fi
|
||||
+
|
||||
+dnl PF support requires a header file.
|
||||
+if test "$PF_TRANSPARENT" ; then
|
||||
+ AC_MSG_CHECKING(if PF header file is installed)
|
||||
+ # hold on to your hats...
|
||||
+ if test "$ac_cv_header_net_pfvar_h" = "yes"; then
|
||||
+ PF_TRANSPARENT="yes"
|
||||
+ AC_DEFINE(PF_TRANSPARENT, 1)
|
||||
+ else
|
||||
+ PF_TRANSPARENT="no"
|
||||
+ AC_DEFINE(PF_TRANSPARENT, 0)
|
||||
+ fi
|
||||
+ AC_MSG_RESULT($PF_TRANSPARENT)
|
||||
+fi
|
||||
+if test "$PF_TRANSPARENT" = "no" ; then
|
||||
+ echo "WARNING: Cannot find necessary PF header file"
|
||||
echo " Transparent Proxy support WILL NOT be enabled"
|
||||
sleep 10
|
||||
fi
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-errors_Makefile_in,v 1.1 2002/02/20 01:17:03 brad Exp $
|
||||
--- errors/Makefile.in.orig Thu Feb 7 12:04:12 2002
|
||||
+++ errors/Makefile.in Thu Feb 7 12:06:12 2002
|
||||
@@ -122,7 +122,7 @@ am__quote = @am__quote@
|
||||
$OpenBSD: patch-errors_Makefile_in,v 1.2 2002/04/17 18:03:21 brad Exp $
|
||||
--- errors/Makefile.in.orig Sat Apr 13 20:14:49 2002
|
||||
+++ errors/Makefile.in Wed Apr 17 13:19:18 2002
|
||||
@@ -117,7 +117,7 @@ am__quote = @am__quote@
|
||||
install_sh = @install_sh@
|
||||
makesnmplib = @makesnmplib@
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-icons_Makefile_in,v 1.1 2002/02/20 01:17:03 brad Exp $
|
||||
--- icons/Makefile.in.orig Thu Feb 7 12:06:24 2002
|
||||
+++ icons/Makefile.in Thu Feb 7 12:06:42 2002
|
||||
@@ -150,7 +150,7 @@ ICON2 = anthony-bomb.gif \
|
||||
$OpenBSD: patch-icons_Makefile_in,v 1.2 2002/04/17 18:03:21 brad Exp $
|
||||
--- icons/Makefile.in.orig Sat Apr 13 20:14:50 2002
|
||||
+++ icons/Makefile.in Wed Apr 17 13:19:18 2002
|
||||
@@ -145,7 +145,7 @@ ICON2 = anthony-bomb.gif \
|
||||
anthony-xpm.gif
|
||||
|
||||
|
||||
|
@ -1,16 +0,0 @@
|
||||
$OpenBSD: patch-include_autoconf_h_in,v 1.1 2002/02/20 01:17:03 brad Exp $
|
||||
--- include/autoconf.h.in.orig Wed Feb 6 20:07:32 2002
|
||||
+++ include/autoconf.h.in Wed Feb 6 20:09:27 2002
|
||||
@@ -278,6 +278,12 @@
|
||||
#undef IPF_TRANSPARENT
|
||||
|
||||
/*
|
||||
+ * Enable support for Transparent Proxy on systems using PF address
|
||||
+ * redirection. This provides "masquerading" support for OpenBSD.
|
||||
+ */
|
||||
+#undef PF_TRANSPARENT
|
||||
+
|
||||
+/*
|
||||
* Enable code for assiting in finding memory leaks. Hacker stuff only.
|
||||
*/
|
||||
#undef USE_LEAKFINDER
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-lib_Makefile_in,v 1.1 2002/03/21 21:17:54 brad Exp $
|
||||
--- lib/Makefile.in.orig Thu Nov 29 06:16:53 2001
|
||||
+++ lib/Makefile.in Thu Mar 21 15:34:27 2002
|
||||
@@ -328,6 +328,13 @@ distclean-depend:
|
||||
$OpenBSD: patch-lib_Makefile_in,v 1.2 2002/04/17 18:03:21 brad Exp $
|
||||
--- lib/Makefile.in.orig Sat Apr 13 20:14:52 2002
|
||||
+++ lib/Makefile.in Wed Apr 17 13:19:18 2002
|
||||
@@ -323,6 +323,13 @@ distclean-depend:
|
||||
@AMDEP_TRUE@ $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
$(COMPILE) -c `cygpath -w $<`
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
|
@ -1,7 +1,27 @@
|
||||
$OpenBSD: patch-src_Makefile_in,v 1.1 2002/02/20 01:17:03 brad Exp $
|
||||
--- src/Makefile.in.orig Thu Feb 7 12:47:49 2002
|
||||
+++ src/Makefile.in Thu Feb 7 13:03:31 2002
|
||||
@@ -791,37 +791,37 @@ CCDEPMODE = @CCDEPMODE@
|
||||
$OpenBSD: patch-src_Makefile_in,v 1.2 2002/04/17 18:03:21 brad Exp $
|
||||
--- src/Makefile.in.orig Sun Apr 14 16:02:03 2002
|
||||
+++ src/Makefile.in Wed Apr 17 13:28:26 2002
|
||||
@@ -366,8 +366,8 @@ EXTRA_DIST = \
|
||||
|
||||
|
||||
DEFAULT_PREFIX = $(prefix)
|
||||
-DEFAULT_CONFIG_FILE = $(sysconfdir)/squid.conf
|
||||
-DEFAULT_MIME_TABLE = $(sysconfdir)/mime.conf
|
||||
+DEFAULT_CONFIG_FILE = $(prefix)/share/examples/squid/squid.conf
|
||||
+DEFAULT_MIME_TABLE = $(prefix)/share/examples/squid/mime.conf
|
||||
DEFAULT_DNSSERVER = $(libexecdir)/@OPT_DNSSERVER_EXE@
|
||||
DEFAULT_LOG_PREFIX = $(localstatedir)/logs
|
||||
DEFAULT_CACHE_LOG = $(DEFAULT_LOG_PREFIX)/cache.log
|
||||
@@ -382,7 +382,7 @@ DEFAULT_ICON_DIR = $(datadir)/icons
|
||||
DEFAULT_ERROR_DIR = $(datadir)/errors/@ERR_DEFAULT_LANGUAGE@
|
||||
DEFAULT_MIB_PATH = $(datadir)/mib.txt
|
||||
|
||||
-DEFS = @DEFS@ -DDEFAULT_CONFIG_FILE=\"$(DEFAULT_CONFIG_FILE)\"
|
||||
+DEFS = @DEFS@ -DDEFAULT_CONFIG_FILE=\"$(sysconfdir)/squid.conf\"
|
||||
|
||||
DISTCLEANFILES = cf_gen_defines.h cf.data cf_parser.h squid.conf.default \
|
||||
globals.c string_arrays.c repl_modules.c auth_modules.c store_modules.c
|
||||
@@ -784,37 +784,37 @@ CCDEPMODE = @CCDEPMODE@
|
||||
uninstall-info-am:
|
||||
install-dataDATA: $(data_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
@ -49,7 +69,7 @@ $OpenBSD: patch-src_Makefile_in,v 1.1 2002/02/20 01:17:03 brad Exp $
|
||||
done
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
@@ -955,7 +955,7 @@ check: check-recursive
|
||||
@@ -948,7 +948,7 @@ check: check-recursive
|
||||
all-am: Makefile $(PROGRAMS) $(DATA)
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
@ -58,46 +78,12 @@ $OpenBSD: patch-src_Makefile_in,v 1.1 2002/02/20 01:17:03 brad Exp $
|
||||
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
@@ -1104,28 +1104,28 @@ auth_modules.c: auth_modules.sh Makefile
|
||||
@$(SHELL) $(srcdir)/auth_modules.sh $(AUTH_MODULES) >auth_modules.c
|
||||
@@ -1071,7 +1071,7 @@ cf_gen_defines.h: $(srcdir)/cf_gen_defin
|
||||
|
||||
install-data-local: install-sysconfDATA install-dataDATA
|
||||
- @if test -f $(DESTDIR)$(sysconfdir)/mime.conf ; then \
|
||||
- echo "$@ will not overwrite existing $(DESTDIR)$(sysconfdir)/mime.conf" ; \
|
||||
+ @if test -f $(DESTDIR)$(prefix)/share/examples/squid/mime.conf ; then \
|
||||
+ echo "$@ will not overwrite existing $(DESTDIR)$(prefix)/share/examples/squid/mime.conf" ; \
|
||||
else \
|
||||
- echo "$(INSTALL_DATA) $(srcdir)/mime.conf.default $(DESTDIR)$(sysconfdir)/mime.conf" ;\
|
||||
- $(INSTALL_DATA) $(srcdir)/mime.conf.default $(DESTDIR)$(sysconfdir)/mime.conf; \
|
||||
+ echo "$(INSTALL_DATA) $(srcdir)/mime.conf.default $(DESTDIR)$(prefix)/share/examples/squid/mime.conf" ;\
|
||||
+ $(INSTALL_DATA) $(srcdir)/mime.conf.default $(DESTDIR)$(prefix)/share/examples/squid/mime.conf; \
|
||||
fi
|
||||
- @if test -f $(DESTDIR)$(sysconfdir)/squid.conf ; then \
|
||||
- echo "$@ will not overwrite existing $(DESTDIR)$(sysconfdir)/squid.conf" ; \
|
||||
+ @if test -f $(DESTDIR)$(prefix)/share/examples/squid/squid.conf ; then \
|
||||
+ echo "$@ will not overwrite existing $(DESTDIR)$(prefix)/share/examples/squid/squid.conf" ; \
|
||||
else \
|
||||
- echo "$(INSTALL_DATA) squid.conf.default $(DESTDIR)$(sysconfdir)/squid.conf"; \
|
||||
- $(INSTALL_DATA) squid.conf.default $(DESTDIR)$(sysconfdir)/squid.conf; \
|
||||
+ echo "$(INSTALL_DATA) squid.conf.default $(DESTDIR)$(prefix)/share/examples/squid/squid.conf"; \
|
||||
+ $(INSTALL_DATA) squid.conf.default $(DESTDIR)$(prefix)/share/examples/squid/squid.conf; \
|
||||
fi
|
||||
$(mkinstalldirs) $(DESTDIR)$(DEFAULT_LOG_PREFIX)
|
||||
|
||||
uninstall-local:
|
||||
- @if test -f $(DESTDIR)$(sysconfdir)/mime.conf ; then \
|
||||
- echo "rm -f $(DESTDIR)$(sysconfdir)/mime.conf"; \
|
||||
- $(RM) -f $(DESTDIR)$(sysconfdir)/mime.conf; \
|
||||
+ @if test -f $(DESTDIR)$(prefix)/share/examples/squid/mime.conf ; then \
|
||||
+ echo "rm -f $(DESTDIR)$(prefix)/share/examples/squid/mime.conf"; \
|
||||
+ $(RM) -f $(DESTDIR)$(prefix)/share/examples/squid/mime.conf; \
|
||||
fi
|
||||
- @if test -f $(DESTDIR)$(sysconfdir)/squid.conf ; then \
|
||||
- echo "rm -f $(DESTDIR)$(sysconfdir)/squid.conf"; \
|
||||
- $(RM) -f $(DESTDIR)$(sysconfdir)/squid.conf; \
|
||||
+ @if test -f $(DESTDIR)$(prefix)/share/examples/squid/squid.conf ; then \
|
||||
+ echo "rm -f $(DESTDIR)$(prefix)/share/examples/squid/squid.conf"; \
|
||||
+ $(RM) -f $(DESTDIR)$(prefix)/share/examples/squid/squid.conf; \
|
||||
fi
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
cf.data: cf.data.pre Makefile
|
||||
sed "\
|
||||
- s%@DEFAULT_MIME_TABLE@%$(DEFAULT_MIME_TABLE)%g;\
|
||||
+ s%@DEFAULT_MIME_TABLE@%$(sysconfdir)/mime.conf%g;\
|
||||
s%@DEFAULT_DNSSERVER@%$(DEFAULT_DNSSERVER)%g;\
|
||||
s%@DEFAULT_UNLINKD@%$(DEFAULT_UNLINKD)%g;\
|
||||
s%@DEFAULT_PINGER@%$(DEFAULT_PINGER)%g;\
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-src_cf_data_pre,v 1.2 2002/03/21 21:17:54 brad Exp $
|
||||
--- src/cf.data.pre.orig Sun Feb 24 22:12:08 2002
|
||||
+++ src/cf.data.pre Wed Mar 20 22:47:49 2002
|
||||
@@ -2233,13 +2233,13 @@ DOC_END
|
||||
$OpenBSD: patch-src_cf_data_pre,v 1.3 2002/04/17 18:03:21 brad Exp $
|
||||
--- src/cf.data.pre.orig Sat Apr 13 18:32:07 2002
|
||||
+++ src/cf.data.pre Wed Apr 17 13:19:18 2002
|
||||
@@ -2236,13 +2236,13 @@ DOC_END
|
||||
|
||||
NAME: cache_effective_user
|
||||
TYPE: string
|
||||
|
@ -1,68 +0,0 @@
|
||||
$OpenBSD: patch-src_client_side_c,v 1.2 2002/03/21 21:17:54 brad Exp $
|
||||
--- src/client_side.c.orig Wed Feb 13 20:00:39 2002
|
||||
+++ src/client_side.c Wed Mar 20 22:47:49 2002
|
||||
@@ -62,6 +62,16 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
+#if PF_TRANSPARENT
|
||||
+#include <sys/types.h>
|
||||
+#include <sys/socket.h>
|
||||
+#include <sys/ioctl.h>
|
||||
+#include <sys/fcntl.h>
|
||||
+#include <net/if.h>
|
||||
+#include <netinet/in.h>
|
||||
+#include <net/pfvar.h>
|
||||
+#endif
|
||||
+
|
||||
#if LINUX_NETFILTER
|
||||
#include <linux/netfilter_ipv4.h>
|
||||
#endif
|
||||
@@ -2439,6 +2449,10 @@ parseHttpRequest(ConnStateData * conn, m
|
||||
static int siocgnatl_cmd = SIOCGNATL & 0xff;
|
||||
int x;
|
||||
#endif
|
||||
+#if PF_TRANSPARENT
|
||||
+ struct pfioc_natlook nl;
|
||||
+ static int pffd = -1;
|
||||
+#endif
|
||||
#if LINUX_NETFILTER
|
||||
size_t sock_sz = sizeof(conn->me);
|
||||
#endif
|
||||
@@ -2669,6 +2683,36 @@ parseHttpRequest(ConnStateData * conn, m
|
||||
inet_ntoa(natLookup.nl_realip),
|
||||
vport, url);
|
||||
}
|
||||
+#elif PF_TRANSPARENT
|
||||
+ if (pffd < 0)
|
||||
+ pffd = open("/dev/pf", O_RDWR);
|
||||
+ if (pffd < 0) {
|
||||
+ debug(50, 1) ("parseHttpRequest: PF open failed: %s\n",
|
||||
+ xstrerror());
|
||||
+ return parseHttpRequestAbort(conn, "error:pf-open-failed");
|
||||
+ }
|
||||
+ memset(&nl, 0, sizeof(struct pfioc_natlook));
|
||||
+ nl.saddr.v4.s_addr = http->conn->peer.sin_addr.s_addr;
|
||||
+ nl.sport = http->conn->peer.sin_port;
|
||||
+ nl.daddr.v4.s_addr = http->conn->me.sin_addr.s_addr;
|
||||
+ nl.dport = http->conn->me.sin_port;
|
||||
+ nl.af = AF_INET;
|
||||
+ nl.proto = IPPROTO_TCP;
|
||||
+ nl.direction = PF_OUT;
|
||||
+ if (ioctl(pffd, DIOCNATLOOK, &nl)) {
|
||||
+ if (errno != ENOENT) {
|
||||
+ debug(50, 1) ("parseHttpRequest: PF lookup failed: ioctl(DIOCNATLOOK)\n");
|
||||
+ close(pffd);
|
||||
+ pffd = -1;
|
||||
+ return parseHttpRequestAbort(conn, "error:pf-lookup-failed");
|
||||
+ } else
|
||||
+ snprintf(http->uri, url_sz, "http://%s:%d%s",
|
||||
+ inet_ntoa(http->conn->me.sin_addr),
|
||||
+ vport, url);
|
||||
+ } else
|
||||
+ snprintf(http->uri, url_sz, "http://%s:%d%s",
|
||||
+ inet_ntoa(nl.rdaddr.v4),
|
||||
+ ntohs(nl.rdport), url);
|
||||
#else
|
||||
#if LINUX_NETFILTER
|
||||
/* If the call fails the address structure will be unchanged */
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.8 2002/03/01 04:36:30 brad Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.9 2002/04/17 18:03:21 brad Exp $
|
||||
bin/RunAccel
|
||||
bin/RunCache
|
||||
bin/squid
|
||||
@ -36,6 +36,35 @@ share/examples/squid/errors/Bulgarian/ERR_UNSUP_REQ
|
||||
share/examples/squid/errors/Bulgarian/ERR_URN_RESOLVE
|
||||
share/examples/squid/errors/Bulgarian/ERR_WRITE_ERROR
|
||||
share/examples/squid/errors/Bulgarian/ERR_ZERO_SIZE_OBJECT
|
||||
share/examples/squid/errors/Catalan/ERR_ACCESS_DENIED
|
||||
share/examples/squid/errors/Catalan/ERR_CACHE_ACCESS_DENIED
|
||||
share/examples/squid/errors/Catalan/ERR_CACHE_MGR_ACCESS_DENIED
|
||||
share/examples/squid/errors/Catalan/ERR_CANNOT_FORWARD
|
||||
share/examples/squid/errors/Catalan/ERR_CONNECT_FAIL
|
||||
share/examples/squid/errors/Catalan/ERR_DNS_FAIL
|
||||
share/examples/squid/errors/Catalan/ERR_FORWARDING_DENIED
|
||||
share/examples/squid/errors/Catalan/ERR_FTP_DISABLED
|
||||
share/examples/squid/errors/Catalan/ERR_FTP_FAILURE
|
||||
share/examples/squid/errors/Catalan/ERR_FTP_FORBIDDEN
|
||||
share/examples/squid/errors/Catalan/ERR_FTP_NOT_FOUND
|
||||
share/examples/squid/errors/Catalan/ERR_FTP_PUT_CREATED
|
||||
share/examples/squid/errors/Catalan/ERR_FTP_PUT_ERROR
|
||||
share/examples/squid/errors/Catalan/ERR_FTP_PUT_MODIFIED
|
||||
share/examples/squid/errors/Catalan/ERR_FTP_UNAVAILABLE
|
||||
share/examples/squid/errors/Catalan/ERR_INVALID_REQ
|
||||
share/examples/squid/errors/Catalan/ERR_INVALID_URL
|
||||
share/examples/squid/errors/Catalan/ERR_LIFETIME_EXP
|
||||
share/examples/squid/errors/Catalan/ERR_NO_RELAY
|
||||
share/examples/squid/errors/Catalan/ERR_ONLY_IF_CACHED_MISS
|
||||
share/examples/squid/errors/Catalan/ERR_READ_ERROR
|
||||
share/examples/squid/errors/Catalan/ERR_READ_TIMEOUT
|
||||
share/examples/squid/errors/Catalan/ERR_SHUTTING_DOWN
|
||||
share/examples/squid/errors/Catalan/ERR_SOCKET_FAILURE
|
||||
share/examples/squid/errors/Catalan/ERR_TOO_BIG
|
||||
share/examples/squid/errors/Catalan/ERR_UNSUP_REQ
|
||||
share/examples/squid/errors/Catalan/ERR_URN_RESOLVE
|
||||
share/examples/squid/errors/Catalan/ERR_WRITE_ERROR
|
||||
share/examples/squid/errors/Catalan/ERR_ZERO_SIZE_OBJECT
|
||||
share/examples/squid/errors/Czech/ERR_ACCESS_DENIED
|
||||
share/examples/squid/errors/Czech/ERR_CACHE_ACCESS_DENIED
|
||||
share/examples/squid/errors/Czech/ERR_CACHE_MGR_ACCESS_DENIED
|
||||
@ -270,6 +299,35 @@ share/examples/squid/errors/German/ERR_UNSUP_REQ
|
||||
share/examples/squid/errors/German/ERR_URN_RESOLVE
|
||||
share/examples/squid/errors/German/ERR_WRITE_ERROR
|
||||
share/examples/squid/errors/German/ERR_ZERO_SIZE_OBJECT
|
||||
share/examples/squid/errors/Hebrew/ERR_ACCESS_DENIED
|
||||
share/examples/squid/errors/Hebrew/ERR_CACHE_ACCESS_DENIED
|
||||
share/examples/squid/errors/Hebrew/ERR_CACHE_MGR_ACCESS_DENIED
|
||||
share/examples/squid/errors/Hebrew/ERR_CANNOT_FORWARD
|
||||
share/examples/squid/errors/Hebrew/ERR_CONNECT_FAIL
|
||||
share/examples/squid/errors/Hebrew/ERR_DNS_FAIL
|
||||
share/examples/squid/errors/Hebrew/ERR_FORWARDING_DENIED
|
||||
share/examples/squid/errors/Hebrew/ERR_FTP_DISABLED
|
||||
share/examples/squid/errors/Hebrew/ERR_FTP_FAILURE
|
||||
share/examples/squid/errors/Hebrew/ERR_FTP_FORBIDDEN
|
||||
share/examples/squid/errors/Hebrew/ERR_FTP_NOT_FOUND
|
||||
share/examples/squid/errors/Hebrew/ERR_FTP_PUT_CREATED
|
||||
share/examples/squid/errors/Hebrew/ERR_FTP_PUT_ERROR
|
||||
share/examples/squid/errors/Hebrew/ERR_FTP_PUT_MODIFIED
|
||||
share/examples/squid/errors/Hebrew/ERR_FTP_UNAVAILABLE
|
||||
share/examples/squid/errors/Hebrew/ERR_INVALID_REQ
|
||||
share/examples/squid/errors/Hebrew/ERR_INVALID_URL
|
||||
share/examples/squid/errors/Hebrew/ERR_LIFETIME_EXP
|
||||
share/examples/squid/errors/Hebrew/ERR_NO_RELAY
|
||||
share/examples/squid/errors/Hebrew/ERR_ONLY_IF_CACHED_MISS
|
||||
share/examples/squid/errors/Hebrew/ERR_READ_ERROR
|
||||
share/examples/squid/errors/Hebrew/ERR_READ_TIMEOUT
|
||||
share/examples/squid/errors/Hebrew/ERR_SHUTTING_DOWN
|
||||
share/examples/squid/errors/Hebrew/ERR_SOCKET_FAILURE
|
||||
share/examples/squid/errors/Hebrew/ERR_TOO_BIG
|
||||
share/examples/squid/errors/Hebrew/ERR_UNSUP_REQ
|
||||
share/examples/squid/errors/Hebrew/ERR_URN_RESOLVE
|
||||
share/examples/squid/errors/Hebrew/ERR_WRITE_ERROR
|
||||
share/examples/squid/errors/Hebrew/ERR_ZERO_SIZE_OBJECT
|
||||
share/examples/squid/errors/Hungarian/ERR_ACCESS_DENIED
|
||||
share/examples/squid/errors/Hungarian/ERR_CACHE_ACCESS_DENIED
|
||||
share/examples/squid/errors/Hungarian/ERR_CACHE_MGR_ACCESS_DENIED
|
||||
@ -763,7 +821,9 @@ share/examples/squid/icons/anthony-xbm.gif
|
||||
share/examples/squid/icons/anthony-xpm.gif
|
||||
share/examples/squid/mib.txt
|
||||
share/examples/squid/mime.conf
|
||||
@comment share/examples/squid/mime.conf.default
|
||||
share/examples/squid/squid.conf
|
||||
@comment share/examples/squid/squid.conf.default
|
||||
@dirrm share/examples/squid/icons
|
||||
@dirrm share/examples/squid/errors/Turkish
|
||||
@dirrm share/examples/squid/errors/Traditional_Chinese
|
||||
@ -781,6 +841,7 @@ share/examples/squid/squid.conf
|
||||
@dirrm share/examples/squid/errors/Japanese
|
||||
@dirrm share/examples/squid/errors/Italian
|
||||
@dirrm share/examples/squid/errors/Hungarian
|
||||
@dirrm share/examples/squid/errors/Hebrew
|
||||
@dirrm share/examples/squid/errors/German
|
||||
@dirrm share/examples/squid/errors/French
|
||||
@dirrm share/examples/squid/errors/Finnish
|
||||
@ -789,6 +850,7 @@ share/examples/squid/squid.conf
|
||||
@dirrm share/examples/squid/errors/Dutch
|
||||
@dirrm share/examples/squid/errors/Danish
|
||||
@dirrm share/examples/squid/errors/Czech
|
||||
@dirrm share/examples/squid/errors/Catalan
|
||||
@dirrm share/examples/squid/errors/Bulgarian
|
||||
@dirrm share/examples/squid/errors
|
||||
@dirrm share/examples/squid
|
||||
|
Loading…
x
Reference in New Issue
Block a user