Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
headers/ | 04-Jan-2025 | - | 77 | 47 | ||
CMakeLists.txt | D | 04-Jan-2025 | 971 | 31 | 24 | |
Kconfig | D | 04-Jan-2025 | 6.7 KiB | 216 | 187 | |
README_http_parser | D | 04-Jan-2025 | 544 | 15 | 10 | |
http_client.c | D | 04-Jan-2025 | 18.2 KiB | 764 | 576 | |
http_hpack.c | D | 04-Jan-2025 | 15.4 KiB | 634 | 494 | |
http_huffman.c | D | 04-Jan-2025 | 21 KiB | 481 | 424 | |
http_parser.c | D | 04-Jan-2025 | 55.9 KiB | 2,392 | 1,837 | |
http_parser_url.c | D | 04-Jan-2025 | 13.8 KiB | 577 | 401 | |
http_server_core.c | D | 04-Jan-2025 | 21.5 KiB | 915 | 695 | |
http_server_http1.c | D | 04-Jan-2025 | 24.9 KiB | 954 | 740 | |
http_server_http2.c | D | 04-Jan-2025 | 45.4 KiB | 1,777 | 1,363 | |
http_server_ws.c | D | 04-Jan-2025 | 2.9 KiB | 123 | 88 | |
iterables_content_type.ld | D | 04-Jan-2025 | 175 | 10 | 7 | |
iterables_header_capture.ld | D | 04-Jan-2025 | 191 | 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