just comments

This commit is contained in:
Miguel Freitas 2013-07-31 09:04:46 -03:00
parent a28de30fce
commit 8f196639ae

View File

@ -206,6 +206,7 @@ void node_impl::unreachable(udp::endpoint const& ep)
m_rpc.unreachable(ep); m_rpc.unreachable(ep);
} }
// new message received from network
void node_impl::incoming(msg const& m) void node_impl::incoming(msg const& m)
{ {
// is this a reply? // is this a reply?
@ -225,12 +226,15 @@ void node_impl::incoming(msg const& m)
case 'r': case 'r':
{ {
node_id id; node_id id;
// reply to our request?
// map transaction => observer, call o->reply, ret true if ok
if (m_rpc.incoming(m, &id)) if (m_rpc.incoming(m, &id))
refresh(id, boost::bind(&nop)); refresh(id, boost::bind(&nop));
break; break;
} }
case 'q': case 'q':
{ {
// new request received
TORRENT_ASSERT(m.message.dict_find_string_value("z") == "q"); TORRENT_ASSERT(m.message.dict_find_string_value("z") == "q");
entry e; entry e;
incoming_request(m, e); incoming_request(m, e);