From: Alexander Komyagin Date: Wed, 18 Apr 2012 22:28:06 +0000 (+1200) Subject: Mark verified intercept traffic correctly after DNS lookup X-Git-Tag: BumpSslServerFirst.take08~7^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=891dfa1b2cce27941fb573ea4d44badf408724d5;p=thirdparty%2Fsquid.git Mark verified intercept traffic correctly after DNS lookup --- diff --git a/src/client_side_request.cc b/src/client_side_request.cc index 9f9285166f..96dfe5bcd7 100644 --- a/src/client_side_request.cc +++ b/src/client_side_request.cc @@ -540,6 +540,7 @@ ClientRequestContext::hostHeaderIpVerify(const ipcache_addrs* ia, const DnsLooku for (int i = 0; i < ia->count; i++) { if (clientConn->local.matchIPAddr(ia->in_addrs[i]) == 0) { debugs(85, 3, HERE << "validate IP " << clientConn->local << " possible from Host:"); + http->request->flags.hostVerified = 1; http->doCallouts(); return; }