--------------------- PatchSet 1361 Date: 2005/05/11 16:33:15 Author: nlewycky Branch: prefetching Tag: (none) Log: Increase the recursion depth limit from 3 to 5 to account for sites with frames. And frames inside frames. And iframes inside frames inside frames. And images inside iframes inside frames inside frames ... Members: src/client_side_reply.cc:1.57.2.2->1.57.2.3 Index: squid3/src/client_side_reply.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/client_side_reply.cc,v retrieving revision 1.57.2.2 retrieving revision 1.57.2.3 diff -u -r1.57.2.2 -r1.57.2.3 --- squid3/src/client_side_reply.cc 5 May 2005 18:24:15 -0000 1.57.2.2 +++ squid3/src/client_side_reply.cc 11 May 2005 16:33:15 -0000 1.57.2.3 @@ -1,6 +1,6 @@ /* - * $Id: client_side_reply.cc,v 1.57.2.2 2005/05/05 18:24:15 nlewycky Exp $ + * $Id: client_side_reply.cc,v 1.57.2.3 2005/05/11 16:33:15 nlewycky Exp $ * * DEBUG: section 88 Client-side Reply Routines * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c) @@ -1933,7 +1933,7 @@ content_type.caseCmp("application/xhtml+xml") == 0) && !httpHeaderHas(&http->storeEntry()->getReply()->header, HDR_CONTENT_ENCODING) && - !http->request->range && http->request->recursion_depth < 3) { + !http->request->range && http->request->recursion_depth < 5) { HTMLAnalysisStream *htmlas = new HTMLAnalysisStream(http->request); clientStreamInsertHead(&http->client_stream, htmlStreamRead, htmlBufferData, htmlStreamDetach,