tags:

views:

322

answers:

2

can anyone suggest a good HTTP parsing library for linux?

+7  A: 

libcurl?

It supports most web-based protocols, widely used, and stable. Available on most Linux distributions and should be around for Windows too. It supports both a simplified interface for quick-and-dirty implementations as well as an advanced interface for a robust implementation.

carl
A: 

If you need a C++ wrapper for curl, you might like curl++. Do look it up.

batbrat