Skip to content

Commit 65cb841

Browse files
glynosdeanberris
authored andcommitted
Added tags section as appendix.
1 parent ae2dad4 commit 65cb841

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

libs/network/doc/appendices.qbk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
[include message_concept.qbk]
1111
[include uri_concept.qbk]
1212
[include http_uri_concept.qbk]
13+
[include tags.qbk]
1314

1415
[endsect] [/ appendices]

libs/network/doc/tags.qbk

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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]

0 commit comments

Comments
 (0)