summaryrefslogtreecommitdiff
path: root/deps/http-parser/http_parser.c
Commit message (Collapse)AuthorAgeFilesLines
* http_parser: cast pointer arithmetic safelyEdward Thomson2019-06-241-5/+11
|
* http_parser: handle URLs with colon but no portEdward Thomson2019-06-111-1/+0
| | | | | | When the end of the host is reached, and we're at the colon separating the host with the port (ie, there is no numeric port) then do not error. This is allowed by RFC 3986.
* Updating change to http_parser to reflect PR for nodejs/http-parserChris Bargren2015-12-281-2/+5
| | | The parser now also supports digits, '-' and '.'. https://github.com/nodejs/http-parser/pull/276
* Updating http parser to accept a `+` in the schemaChris Bargren2015-12-221-1/+1
|
* Rever spelling fixes for dependenciesCarlos Martín Nieto2014-12-051-1/+1
| | | | | This is not our code and it adds unecessary changes from the upstream code.
* Spelling fixesWill Stamper2014-12-041-1/+1
|
* Remove use of English expletivesMartin Woodward2012-11-231-1/+1
| | | | | | Remove words such as fuck, crap, shit etc. Remove other potentially offensive words from comments. Tidy up other geopolicital terms in comments.
* Bump the builtin http-parserhttp-parser-2Vicent Marti2012-11-121-577/+973
|
* http-parser: More type changesVicent Marti2011-09-281-3/+3
|
* Change types in http-parserVicent Marti2011-09-281-4/+4
|
* Really fix MSVCCarlos Martín Nieto2011-09-271-1/+1
| | | | | | These was left over from the previous PRs. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
* Fix dev branch under MSVCCarlos Martín Nieto2011-09-271-8/+10
| | | | | | | | | | | | | In libgit2: Move an enum out of an int bitfield in the HTTP transport. In the parser: Use int bitfields and change some variable sizes to better fit thir use. Variables that count the size of the data chunk can only ever be as large as off_t. Warning 4127 can be ignored, as nobody takes it seriously anyway. From Emeric: change some variable declarations to keep MSVC happy. Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
* http: add http-parserCarlos Martín Nieto2011-09-091-0/+1776
The code is under the MIT lincense Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>