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

..--

headers/04-Jan-2025-7747

CMakeLists.txtD04-Jan-2025971 3124

KconfigD04-Jan-20256.7 KiB216187

README_http_parserD04-Jan-2025544 1510

http_client.cD04-Jan-202518.2 KiB764576

http_hpack.cD04-Jan-202515.4 KiB634494

http_huffman.cD04-Jan-202521 KiB481424

http_parser.cD04-Jan-202555.9 KiB2,3921,837

http_parser_url.cD04-Jan-202513.8 KiB577401

http_server_core.cD04-Jan-202521.5 KiB915695

http_server_http1.cD04-Jan-202524.9 KiB954740

http_server_http2.cD04-Jan-202545.4 KiB1,7771,363

http_server_ws.cD04-Jan-20252.9 KiB12388

iterables_content_type.ldD04-Jan-2025175 107

iterables_header_capture.ldD04-Jan-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