Browse Source

Fix building with boost >= 1.70

miguelfreitas
Chocobo1 4 years ago
parent
commit
1efa0961ae
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 8
      src/bitcoinrpc.cpp

8
src/bitcoinrpc.cpp

@ -645,7 +645,11 @@ public: @@ -645,7 +645,11 @@ public:
}
bool connect(const std::string& server, const std::string& port)
{
#if BOOST_VERSION >= 107000
ip::tcp::resolver resolver(static_cast<io_service&>(stream.get_executor().context()));
#else
ip::tcp::resolver resolver(stream.get_io_service());
#endif
ip::tcp::resolver::query query(server.c_str(), port.c_str());
ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve(query);
ip::tcp::resolver::iterator end;
@ -732,7 +736,11 @@ static void RPCListen(boost::shared_ptr< basic_socket_acceptor<Protocol> > accep @@ -732,7 +736,11 @@ static void RPCListen(boost::shared_ptr< basic_socket_acceptor<Protocol> > accep
const bool fUseSSL)
{
// Accept connection
#if BOOST_VERSION >= 107000
AcceptedConnectionImpl<Protocol>* conn = new AcceptedConnectionImpl<Protocol>(static_cast<io_service&>(acceptor->get_executor().context()), context, fUseSSL);
#else
AcceptedConnectionImpl<Protocol>* conn = new AcceptedConnectionImpl<Protocol>(acceptor->get_io_service(), context, fUseSSL);
#endif
acceptor->async_accept(
conn->sslStream.lowest_layer(),

Loading…
Cancel
Save