• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..22-Aug-2025-

headers/22-Aug-2025-

CMakeLists.txt A D22-Aug-20251.1 KiB3225

Kconfig A D22-Aug-20258.3 KiB253220

README_http_parser A D22-Aug-2025558 1510

http_client.c A D22-Aug-202521.3 KiB840624

http_compression.c A D22-Aug-20253 KiB134106

http_hpack.c A D22-Aug-202515.9 KiB629490

http_huffman.c A D22-Aug-202521.5 KiB481424

http_parser.c A D22-Aug-202562.2 KiB2,5661,977

http_parser_url.c A D22-Aug-202514.3 KiB577401

http_server_core.c A D22-Aug-202525.1 KiB1,008776

http_server_http1.c A D22-Aug-202530.7 KiB1,099853

http_server_http2.c A D22-Aug-202550.2 KiB1,8791,448

http_server_ws.c A D22-Aug-20253.4 KiB13396

iterables_content_type.ld A D22-Aug-2025184 107

iterables_header_capture.ld A D22-Aug-2025200 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