I am looking for HTTP parsing library for C/C++.
I have looked curl library, but it seems it is a http client library.
I am looking for a library which parses HTTP header (e.g. a way to
get the query string, get cookie, get request url, get Post Data)?
Thank you.
Check out libebb, it has a parser generated with Ragel using the easy yet powerful PEG (it’s based on Zed Shaw’s mongrel parser)
Also check this speedy parser