• Home
  • History
  • Annotate
Name
Date
Size
#Lines
LOC

..--

headers/18-Mar-2025-8654

CMakeLists.txtD18-Mar-20251 KiB3225

KconfigD18-Mar-20257.5 KiB239207

README_http_parserD18-Mar-2025544 1510

http_client.cD18-Mar-202519.1 KiB790597

http_compression.cD18-Mar-20252.9 KiB134106

http_hpack.cD18-Mar-202515.3 KiB629490

http_huffman.cD18-Mar-202521 KiB481424

http_parser.cD18-Mar-202559.7 KiB2,5661,977

http_parser_url.cD18-Mar-202513.8 KiB577401

http_server_core.cD18-Mar-202523.5 KiB992762

http_server_http1.cD18-Mar-202529.2 KiB1,091846

http_server_http2.cD18-Mar-202548.3 KiB1,8791,448

http_server_ws.cD18-Mar-20253.3 KiB13396

iterables_content_type.ldD18-Mar-2025175 107

iterables_header_capture.ldD18-Mar-2025191 107

README_http_parser

1HTTP Parser Support in Zephyr
2-----------------------------
3
4The http-parser library* from the nodejs project is a downstream of an
5externally maintained open source project. The original upstream code
6can be found at:
7
8https://github.com/nodejs/http-parser/releases/tag/v2.7.1
9https://github.com/nodejs/http-parser/archive/v2.7.1.tar.gz
10
11NOTE: The portions which relate to URL parsing have been split out into
12http_parser_url.c (originally located in http_parser.c).
13
14* "http-parser" is the project's name, "http_parser" is used in filenames.
15