Browse Source

return false when packet not sent to ourselves

miguelfreitas
Miguel Freitas 11 years ago
parent
commit
a19c4f231f
  1. 2
      libtorrent/src/kademlia/find_data.cpp

2
libtorrent/src/kademlia/find_data.cpp

@ -208,7 +208,7 @@ bool find_data::invoke(observer_ptr o) @@ -208,7 +208,7 @@ bool find_data::invoke(observer_ptr o)
// im not going to ask trackers from myself
if( o->id() == m_node.nid() )
return true;
return false;
entry e;
e["z"] = "q";

Loading…
Cancel
Save