Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
CMakeLists.txt | D | 11-Mar-2024 | 406 | 14 | 9 | |
Kconfig | D | 11-Mar-2024 | 1 KiB | 37 | 31 | |
README_http_parser | D | 11-Mar-2024 | 544 | 15 | 10 | |
http_client.c | D | 11-Mar-2024 | 15.6 KiB | 691 | 524 | |
http_parser.c | D | 11-Mar-2024 | 55.9 KiB | 2,392 | 1,837 | |
http_parser_url.c | D | 11-Mar-2024 | 13.7 KiB | 577 | 401 |
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