Skip to content

Commit 8f8eb7a

Browse files
committed
Fixes cpp-netlib#42 : Use BOOST_NETWORK_HTTP_CLIENT_DEFAULT_TAG, default to HTTP 1.1.
1 parent 5f8cf0f commit 8f8eb7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

boost/network/protocol/http/client.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ namespace boost { namespace network { namespace http {
7777

7878
};
7979

80-
#ifndef BOOST_NETWORK_HTTP_DEFAULT_TAG
81-
#define BOOST_NETWORK_HTTP_DEFAULT_TAG tags::http_async_8bit_udp_resolve
80+
#ifndef BOOST_NETWORK_HTTP_CLIENT_DEFAULT_TAG
81+
#define BOOST_NETWORK_HTTP_CLIENT_DEFAULT_TAG tags::http_async_8bit_udp_resolve
8282
#endif
8383

84-
typedef basic_client<BOOST_NETWORK_HTTP_DEFAULT_TAG, 1, 1> client;
84+
typedef basic_client<BOOST_NETWORK_HTTP_CLIENT_DEFAULT_TAG, 1, 1> client;
8585

8686
} // namespace http
8787

0 commit comments

Comments
 (0)