nodejs / http-parser

http request/response parser for c
MIT License
6.35k stars 1.54k forks source link

add: parse query_string and fragment #368

Closed priest334 closed 7 years ago

priest334 commented 7 years ago

add: parse query string and fragment for http request

bnoordhuis commented 7 years ago

Thanks, but as this changes the ABI (it makes http_parser_settings bigger) we cannot land this until the next major version and that probably won't happen for a long time.

Does http_parser_parse_url() work for you in the interim?

priest334 commented 7 years ago

I just made this changes for my project and didn't consider that aspect. Maybe, I should use alternative method to deal with query parameters. Thanks.