comparison src/http/ngx_http_request.c @ 3054:a137de814516

do not disable gzip for MSIE 6.0 SV1 in "gzip_disable msie6"
author Igor Sysoev <igor@sysoev.ru>
date Fri, 28 Aug 2009 08:19:02 +0000
parents 6060225e9261
children 23e6f26fb4bd
comparison
equal deleted inserted replaced
3053:0d253659da12 3054:a137de814516
1384 switch (msie[5]) { 1384 switch (msie[5]) {
1385 case '4': 1385 case '4':
1386 r->headers_in.msie4 = 1; 1386 r->headers_in.msie4 = 1;
1387 /* fall through */ 1387 /* fall through */
1388 case '5': 1388 case '5':
1389 r->headers_in.msie6 = 1;
1390 break;
1389 case '6': 1391 case '6':
1390 r->headers_in.msie6 = 1; 1392 if (ngx_strstrn(msie + 8, "SV1", 3 - 1) == NULL) {
1393 r->headers_in.msie6 = 1;
1394 }
1395 break;
1391 } 1396 }
1392 } 1397 }
1393 1398
1394 #if 0 1399 #if 0
1395 /* MSIE ignores the SSL "close notify" alert */ 1400 /* MSIE ignores the SSL "close notify" alert */