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

@@ -9,7 +9,7 @@ using namespace boost::asio::ip;
PeerDoor::PeerDoor(boost::asio::io_service& io_service) :
mAcceptor(io_service, tcp::endpoint(tcp::v4(), theConfig.PEER_PORT))
{
cout << "Opening door on port: " << theConfig.PEER_PORT << endl;
cout << "Opening peer door on port: " << theConfig.PEER_PORT << endl;
startListening();
}