Browse Source

Fix undefined symbols.

cl-refactor
Gav Wood 10 years ago
parent
commit
3f21dba939
  1. 9
      libethnet/PeerSession.cpp

9
libethnet/PeerSession.cpp

@ -53,6 +53,15 @@ PeerSession::~PeerSession()
catch (...){}
}
void PeerSession::onNewPeer()
{
}
bool PeerSession::interpret(RLP const&)
{
return false;
}
bi::tcp::endpoint PeerSession::endpoint() const
{
if (m_socket.is_open())

Loading…
Cancel
Save