getting connections working

This commit is contained in:
jed
2012-01-19 12:32:41 -08:00
parent 239e26a56e
commit 92f6ad6d37
9 changed files with 29 additions and 8 deletions

View File

@@ -10,7 +10,7 @@ using namespace boost::asio::ip;
RPCDoor::RPCDoor(boost::asio::io_service& io_service) :
mAcceptor(io_service, tcp::endpoint(boost::asio::ip::address_v4::loopback(), theConfig.RPC_PORT))
{
cout << "Opening rpc door on port: " << theConfig.RPC_PORT << endl;
startListening();
}