summaryrefslogtreecommitdiff
path: root/Libraries/LibHTTP/Job.cpp
AgeCommit message (Collapse)Author
2020-05-21LibHTTP: Handle chunk sizes that start with zeros correctlyAnotherTest
Apparently that's allowed and the RFC is just unclear about it. Some servers seem to zero-pad the chunk size for whatever reason, and previously, we interpreted that as the last chunk.
2020-05-17LibGemini+LibHTTP: Defer did_progress call to match other callbacksConrad Pankoff
2020-05-12LibHTTP: Support Transfer-Encoding: chunkedAnotherTest
We advertise ourselves to servers as supporting HTTP/1.1; we should put our money where our mouth is, and start supporting some of its features.
2020-05-05LibHTTP: Unify and generalise response handling logicAnotherTest