Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
headers/ | 18-Mar-2025 | - | 86 | 54 | ||
CMakeLists.txt | D | 18-Mar-2025 | 1 KiB | 32 | 25 | |
Kconfig | D | 18-Mar-2025 | 7.5 KiB | 239 | 207 | |
README_http_parser | D | 18-Mar-2025 | 544 | 15 | 10 | |
http_client.c | D | 18-Mar-2025 | 19.1 KiB | 790 | 597 | |
http_compression.c | D | 18-Mar-2025 | 2.9 KiB | 134 | 106 | |
http_hpack.c | D | 18-Mar-2025 | 15.3 KiB | 629 | 490 | |
http_huffman.c | D | 18-Mar-2025 | 21 KiB | 481 | 424 | |
http_parser.c | D | 18-Mar-2025 | 59.7 KiB | 2,566 | 1,977 | |
http_parser_url.c | D | 18-Mar-2025 | 13.8 KiB | 577 | 401 | |
http_server_core.c | D | 18-Mar-2025 | 23.5 KiB | 992 | 762 | |
http_server_http1.c | D | 18-Mar-2025 | 29.2 KiB | 1,091 | 846 | |
http_server_http2.c | D | 18-Mar-2025 | 48.3 KiB | 1,879 | 1,448 | |
http_server_ws.c | D | 18-Mar-2025 | 3.3 KiB | 133 | 96 | |
iterables_content_type.ld | D | 18-Mar-2025 | 175 | 10 | 7 | |
iterables_header_capture.ld | D | 18-Mar-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