1414#include < boost/network/protocol/http/client/options.hpp>
1515#include < boost/network/detail/debug.hpp>
1616#ifdef BOOST_NETWORK_DEBUG
17- #include < boost/ network/uri/ uri_io.hpp>
17+ #include < network/uri_io.hpp>
1818#endif
1919#include < boost/algorithm/string/case_conv.hpp>
2020
@@ -35,9 +35,9 @@ struct simple_connection_factory_pimpl {
3535 request_baseconst & request,
3636 client_optionsconst & options) {
3737BOOST_NETWORK_MESSAGE (" simple_connection_factory_pimpl::create_connection(...)" );
38- uri ::uri uri_ =http::uri (request);
38+ ::network ::uri uri_ =http::uri (request);
3939BOOST_NETWORK_MESSAGE (" destination:" << uri_);
40- bool https =to_lower_copy (scheme (uri_)) ==" https" ;
40+ bool https =to_lower_copy (:: network:: scheme (uri_)) ==" https" ;
4141 shared_ptr<client_connection> conn_;
4242 conn_.reset (new (std::nothrow)http_async_connection (
4343 res_delegate_factory_->create_resolver_delegate (service, options.cache_resolved ()),
@@ -83,9 +83,9 @@ simple_connection_factory::~simple_connection_factory() {
8383}
8484
8585}/* http*/
86-
86+
8787}/* network*/
88-
88+
8989}/* boost*/
9090
9191#endif /* BOOST_NETWORK_PROTOCOL_HTTP_CLIENT_CONNECTION_SIMPLE_CONNECTION_FACTORY_20111120*/