Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 22-Aug-2025 | - | ||||
headers/ | 22-Aug-2025 | - | ||||
CMakeLists.txt | A D | 22-Aug-2025 | 1.1 KiB | 32 | 25 | |
Kconfig | A D | 22-Aug-2025 | 8.3 KiB | 253 | 220 | |
README_http_parser | A D | 22-Aug-2025 | 558 | 15 | 10 | |
http_client.c | A D | 22-Aug-2025 | 21.3 KiB | 840 | 624 | |
http_compression.c | A D | 22-Aug-2025 | 3 KiB | 134 | 106 | |
http_hpack.c | A D | 22-Aug-2025 | 15.9 KiB | 629 | 490 | |
http_huffman.c | A D | 22-Aug-2025 | 21.5 KiB | 481 | 424 | |
http_parser.c | A D | 22-Aug-2025 | 62.2 KiB | 2,566 | 1,977 | |
http_parser_url.c | A D | 22-Aug-2025 | 14.3 KiB | 577 | 401 | |
http_server_core.c | A D | 22-Aug-2025 | 25.1 KiB | 1,008 | 776 | |
http_server_http1.c | A D | 22-Aug-2025 | 30.7 KiB | 1,099 | 853 | |
http_server_http2.c | A D | 22-Aug-2025 | 50.2 KiB | 1,879 | 1,448 | |
http_server_ws.c | A D | 22-Aug-2025 | 3.4 KiB | 133 | 96 | |
iterables_content_type.ld | A D | 22-Aug-2025 | 184 | 10 | 7 | |
iterables_header_capture.ld | A D | 22-Aug-2025 | 200 | 10 | 7 |
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