|
| 1 | +[/ |
| 2 | + (C) Copyright 2010 Glyn Matthews. |
| 3 | + Distributed under the Boost Software License, Version 1.0. |
| 4 | + (See accompanying file LICENSE_1_0.txt or copy at |
| 5 | + http://www.boost.org/LICENSE_1_0.txt). |
| 6 | +] |
| 7 | + |
| 8 | +[section:tags_reference Tags] |
| 9 | + |
| 10 | +[heading HTTP Client Tags] |
| 11 | + |
| 12 | +[table |
| 13 | + [[ HTTP Version ][ Tag ][ Version ][ Description ]] |
| 14 | + [[ 1.1 ][ `http_default_8bit_*_resolver` ][ 0.5 ][ All requests default to 'Connection: close", one request one connection.]] |
| 15 | + [[ 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.]] |
| 16 | + [[ 1.1 ][ `http_futures_8bit_*_resolver` ][ undetermined ][ Client becomes an active object, results are `future<basic_response<Tag> >`, one request one connection.]] |
| 17 | + [[ 1.1 ][ `http_futures_pooled_8bit_*_resolver` ][ undetermined ][ Client becomes an active object, results are `future<basic_response<Tag> >`, connections are pooled 2 per host.]] |
| 18 | + [[ 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.]] |
| 19 | + [[ 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.]] |
| 20 | +] |
| 21 | + |
| 22 | +[endsect] [/ tags_reference] |