mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-05-11 01:38:25 +02:00
Merge remote-tracking branch 'stevee/proxy-squidclamav' into next
Conflicts: config/cfgroot/general-functions.pl
This commit is contained in:
13
src/patches/squidclamav-5.11-dont_use_ipv6.patch
Normal file
13
src/patches/squidclamav-5.11-dont_use_ipv6.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
diff -Nur a/src/squidclamav.c b/src/squidclamav.c
|
||||
--- a/src/squidclamav.c 2012-10-29 09:46:06.000000000 +0100
|
||||
+++ b/src/squidclamav.c 2013-07-06 19:10:56.375292374 +0200
|
||||
@@ -413,6 +413,9 @@
|
||||
/* Suppress error: SSL certificate problem, verify that the CA cert is OK */
|
||||
curl_easy_setopt (eh, CURLOPT_SSL_VERIFYHOST, 0);
|
||||
curl_easy_setopt (eh, CURLOPT_SSL_VERIFYPEER, 0);
|
||||
+
|
||||
+ /* Prevent squidclamav from using IPv6 - fix by Nico Prenzel */
|
||||
+ curl_easy_setopt (eh, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);
|
||||
}
|
||||
}
|
||||
/* create a squidguard child process and setup pipes */
|
||||
Reference in New Issue
Block a user