forked from premiere/premiere-libtorrent
fixed missing header include. added todo comment at a reported bug
This commit is contained in:
parent
87eb377b17
commit
8227b160ea
|
@ -34,6 +34,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
#define TRAVERSAL_ALGORITHM_050324_HPP
|
||||
|
||||
#include <vector>
|
||||
#include <set>
|
||||
|
||||
#include <libtorrent/kademlia/node_id.hpp>
|
||||
#include <libtorrent/kademlia/routing_table.hpp>
|
||||
|
|
|
@ -445,6 +445,8 @@ namespace libtorrent
|
|||
m_dht_announce_timer.expires_from_now(boost::posix_time::minutes(30));
|
||||
m_dht_announce_timer.async_wait(bind(&torrent::on_dht_announce, this, _1));
|
||||
if (!m_ses.m_dht) return;
|
||||
// TODO: BUG! This may invoke on_dht_announce() with an invalid this-pointer.
|
||||
// there has to be a way to abort an announce operation on the dht.
|
||||
m_ses.m_dht->announce(m_torrent_file.info_hash()
|
||||
, m_ses.m_listen_interface.port()
|
||||
, bind(&torrent::on_dht_announce_response, this, _1));
|
||||
|
|
Loading…
Reference in New Issue