http-parser icon indicating copy to clipboard operation
http-parser copied to clipboard

http request/response parser for c

Results 80 http-parser issues
Sort by recently updated
recently updated
newest added

Bonjour, Porting http-parser to AIX, where there are 32 and 64 bit environments, there is a test on sizeof (struct http_parser) which fails due to 8 byte reservation for void*...

two request once by tcp tools: GET /favicon.ico HTTP/1.1 Host: 127.0.0.1 Connection: keep-alive Sec-Fetch-Site: none Sec-Fetch-Mode: no-cors User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36 Accept-Encoding:...

I'm moving on and as the last (semi-)active maintainer, that means http-parser is now effectively unmaintained. It's a stable project for a stable protocol and I don't expect many issues...

The current usage of the F_SKIPBODY bit in parser->flags is documented as having to do with parsing HEAD responses. Those will generally have a `content-length` field, but no matching body....

Hello! According to [this issue](https://github.com/libgit2/libgit2/pull/5108) on libgit2, RFC 3986 says: URI producers and normalizers should omit the port component and its ":" delimiter if port is empty or if its...

Hello, My team and me have been using http_parser to provide a minimalistic HTTP Server feature in one of our C++ services, and it's been serving us well so far....

After installing http-parser 2.9.2, calling in nodejs `./configure --shared-http-parser` prints ``` Package http_parser was not found in the pkg-config search path. Perhaps you should add the directory containing `http_parser.pc' to...

## Problem Description I got a conflict with http_parser.h, which uses the same macro name: #define XX() ## Code to reproduce this issue #define XX(x) something ## Proposed solution Never...

http_parser_parse_url quietly fails to parse very long URLs. Instead it will return invalid `off` and `len` values. There could be a security impact in this issue in situations where the...

Currently, http-parser will always support the: `Proxy-Connection` header. This header is not standard, and not required for any real legitimate client: * https://jdebp.eu/FGA/web-proxy-connection-header.html * https://en.wikipedia.org/wiki/List_of_HTTP_header_fields are two examples explaining this...