@@ -25,46 +25,9 @@ determine the behavior of the ``basic_client``. The interface of
25
25
you provide. Below is a table of predefined supported tags you can use in your
26
26
overload of the ``basic_client ``:
27
27
28
+ ------------
28
29
29
- +---------------------------------+---------------------------------------------+
30
- | Tag | Description |
31
- +=================================+=============================================+
32
- | http_default_8bit_tcp_resolve | This is the default HTTP implementation tag |
33
- | | that resolves addresses with a TCP resolver |
34
- | | and provides a synchronous/blocking HTTP |
35
- | | client interface. |
36
- +---------------------------------+---------------------------------------------+
37
- | http_default_8bit_udp_resolve | This is similar to the above tag except that|
38
- | | it specifies the HTTP client to use a UDP |
39
- | | resolver. It also provides a synchronous/ |
40
- | | blocking HTTP client interface. |
41
- +---------------------------------+---------------------------------------------+
42
- | http_keepalive_8bit_tcp_resolve | This tag specifies that the HTTP client by |
43
- | | default will keep connections to the server |
44
- | | alive. It only makes sense if the |
45
- | | ``version_major `` and ``version_minor `` are |
46
- | | both ``1 ``, to indicate HTTP 1.1. This tag |
47
- | | causes the HTTP client to resolve using a |
48
- | | TCP resolver and provides a synchronous/ |
49
- | | blocking HTTP client interface. |
50
- +---------------------------------+---------------------------------------------+
51
- | http_keepalive_8bit_udp_resolve | This is similar to the above tag except that|
52
- | | it specifies the HTTP client to use a UDP |
53
- | | resolver. It also provides a synchronous/ |
54
- | | blocking HTTP client interface. |
55
- +---------------------------------+---------------------------------------------+
56
- | http_async_8bit_tcp_resolve | This tag provides an active HTTP client |
57
- | | object implementation that uses a TCP |
58
- | | resolver. Response objects returned will |
59
- | | encapsulate a number of Boost.Thread _ |
60
- | | shared futures to hold values. Users don't |
61
- | | have to see this as they are implementation |
62
- | | details. |
63
- +---------------------------------+---------------------------------------------+
64
- | http_async_8bit_udp_resolve | This is similar to the above tag except that|
65
- | | specifies the HTTP client to use a UDP |
66
- | | resolver. |
67
- +---------------------------------+---------------------------------------------+
30
+ .. include :: http_client_tags.rst
68
31
69
32
.. _Boost.Thread : http://www.boost.org/libs/thread
70
33
0 commit comments