Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Are you writing a webserver or a plugin or cgi program? i.e. are you really going to receive raw HTTP or 'cooked' headers? – Charles Bailey Apr 11 '10 at 15:27
Raw HTTP headers. I need to pass what I read from a socket and parse the http header files. – michael Apr 11 '10 at 15:38

3 Answers

up vote 6 down vote accepted

Check out libebb, it has a parser generated with Raegel using the easy yet powerful PEG (it's based on Zed Shaw's mongrel parser)

libebb is a lightweight HTTP server library for C. It lays the foundation for writing a web server by providing the socket juggling and request parsing. By implementing the HTTP/1.1 grammar provided in RFC2612, libebb understands most most valid HTTP/1.1 connections (persistent, pipelined, and chunked requests included) and rejects invalid or malicious requests. libebb supports SSL over HTTP.

Also check this speedy parser

share|improve this answer
2  
http parser moved here. https://github.com/joyent/http-parser – douyw Nov 9 '12 at 1:57

About 6 months ago, I was looking for the same exact thing. Then I found this page: HTTP Made Really Really Easy and I just wrote my own... Works great, surprisingly simple to implement...

share|improve this answer
4  
Simple, if you don't care about getting all the corner cases right. Multi-line status codes, escape characters, international strings. – Ben Voigt Apr 11 '10 at 17:10
True enough. Didn't matter for my use... – dicroce Apr 12 '10 at 16:34

I would suggest you to have a look to cpp-netlib, which is based on Boost.Asio.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.