summaryrefslogtreecommitdiff
path: root/deps/http-parser
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Solaris doesn't necessarily have stdint.h, use inttypes.hJacques Germishuys2014-08-051-0/+2
|
* 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-122-647/+1079
|
* msvc: Remove superfluous includesVicent Marti2011-10-051-15/+1
|
* http-parser: Disable MSVC warnings locallyVicent Marti2011-09-291-0/+5
|
* Resync with upstream http-parserCarlos Martín Nieto2011-09-281-12/+11
|
* http-parser: More type changesVicent Marti2011-09-282-4/+4
|
* 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-parser: Do not use bitfieldsVicent Marti2011-09-271-11/+12
| | | | | | | | | | | | | | | Bitfields suck. And if you make them with non-int types, they suck in a non-standards compliant way. Like sucking sideways or something. This commit removes all bitfields in the `http_parser` struct, and replaces them with the minimal type needed to contain their values. Note that the fields in the struct have been reordered so they can be packed with 4-byte alignment. This saves both memory on the parser (because non-int bitfields get expanded to 4byte in most compilers anyway) and time (because the fields are now properly aligned and the compiler doesn't need to generate bit-level ops to access them).
* http: add http-parserCarlos Martín Nieto2011-09-093-0/+2075
The code is under the MIT lincense Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>