This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
forked from cpp-netlib/cpp-netlib
-
Notifications
You must be signed in to change notification settings - Fork 60
Tags
cpp-netlib edited this page Sep 14, 2010
·
1 revision
For HTTP Client Tags
HTTP Version | Tag | Version | Description |
1.1 | http_default_8bit_*_resolver | 0.5 | All requests default to ’Connection: close", one request one connection. |
1.1 | http_keepalive_8bit_*_resolver | 0.5 | For a given host, connections are persistent and re-usable, unless server sends ‘Connection: close’ to a response. |
1.1 | http_futures_8bit_*_resolver | undetermined | Client becomes an active object, results are future<basic_response >, one request one connection. |
1.1 | http_futures_pooled_8bit_*_resolver | undetermined | Client becomes an active object, results are future<basic_response >, connections are pooled 2 per host. |
1.1 | http_async_8bit_*_resolver | undetermined | Client becomes active object, requests will have a function object parameter which handles streaming data, one connection per request. |
1.1 | http_async_pooled_8bit_*_resolver | undetermined | Client becomes active, requests will have a function object parameter which handles streaming data, connections are pooled 2 per host. |