Ignore chunked encoding header.

This commit is contained in:
Andrew McMillan 2010-04-29 16:06:46 +12:00
parent f844d6b692
commit 811af721ac

View File

@ -29,6 +29,10 @@ while( <STDIN> ) {
$_ = ""; $_ = "";
}; };
/^Transfer-Encoding:/ && do {
$_ = "";
};
/^Vary: / && do { /^Vary: / && do {
$_ = ""; $_ = "";
}; };