Merge branch 'master' into topic/jsiwek/reorg-followup

This commit is contained in:
Jon Siwek 2011-08-10 19:59:18 -05:00
commit f517d0e0ad
18 changed files with 720 additions and 141 deletions

View file

@ -215,7 +215,7 @@ event http_header(c: connection, is_orig: bool, name: string, value: string) &pr
c$http$response_content_length = extract_count(value);
else if ( name == "CONTENT-DISPOSITION" &&
/[fF][iI][lL][eE][nN][aA][mM][eE]/ in value )
c$http$filename = sub(value, /^.*[fF][iI][lL][eE][nN][aA][mM][eE]=/, "");
c$http$filename = extract_filename_from_content_disposition(value);
}
}