Rohit Banga
Rohit Banga

Reputation: 18918

HTTP parsing library for linux C++

can anyone suggest a good HTTP parsing library for linux?

Upvotes: 2

Views: 2602

Answers (2)

batbrat
batbrat

Reputation: 5221

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

Upvotes: 1

carl
carl

Reputation: 50554

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.

Upvotes: 7

Related Questions