mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-04 22:22:47 +00:00
With the introduction of CoAP and other protocols, URL parsing is be needed when HTTP_PARSER is not. Let's split out the existing functionality of URL parsing into it's own CONFIG and let HTTP_PARSER use it by automatically selecting HTTP_PARSER_URL when HTTP_PARSER is enabled. Signed-off-by: Michael Scott <michael.scott@linaro.org>
15 lines
544 B
Plaintext
15 lines
544 B
Plaintext
HTTP Parser Support in Zephyr
|
|
-----------------------------
|
|
|
|
The http-parser library* from the nodejs project is a downstream of an
|
|
externally maintained open source project. The original upstream code
|
|
can be found at:
|
|
|
|
https://github.com/nodejs/http-parser/releases/tag/v2.7.1
|
|
https://github.com/nodejs/http-parser/archive/v2.7.1.tar.gz
|
|
|
|
NOTE: The portions which relate to URL parsing have been split out into
|
|
http_parser_url.c (orignially located in http_parser.c).
|
|
|
|
* "http-parser" is the project's name, "http_parser" is used in filenames.
|