summaryrefslogtreecommitdiffstats
path: root/src/network/access/qhttpnetworkreply.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers as requested by the marketing department.Jason McDonald2009-06-161-2/+2
| | | | | | | | | | Reviewed-by: Trust Me (cherry picked from commit 858c70f768eeb2d65cefd4115f4e9089b588b2d0) Conflicts: tests/auto/moc/os9-newlines.h tests/auto/moc/win-newlines.h
* Update license headers to the release version.Jason McDonald2009-05-231-5/+5
| | | | | | | Please do not pull this change into other branches. These headers are only valid for release branches. Reviewed-by: Trust Me
* Improve the HTTP status line parsing and catch more errors.Thiago Macieira2009-05-131-22/+36
| | | | | | | | | | | | There's no need for using QByteArrayMatcher for one single character, so avoid the overhead. Also validate the message header a bit more: we require the status line to start with "HTTP/n.m " where n and m are positive integers less than 10. Task-number: 248838 Reviewed-by: Markus Goetz
* Fix handling of garbage data sent by the HTTP server instead of aThiago Macieira2009-05-131-1/+10
| | | | | | | | | | | proper HTTP reply. If the server's reply doesn't start with "HTTP/", then the reply is not valid. This could happen if we connected via HTTP to an HTTPS server. It could also happen with an Icecast server (reply ICY/x.y). Task-number: 248838 Reviewed-by: Markus Goetz
* Splitted qhttpnetworkconnection* files into individual filesMarkus Goetz2009-04-061-0/+663
(cherry picked from commit fd9b788bd6a99630b06cffee4c9fa9f4c06b0ef1)