zephyr/subsys/net/lib/http/README_http_parser
Michael Scott 1d36225345 net: lib: http: split out URL parsing as a separate CONFIG
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>
2017-10-17 08:08:16 -04:00

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.