fixed dht announce bug
This commit is contained in:
parent
8b6be335d5
commit
1d31dc3613
|
@ -932,12 +932,12 @@ namespace libtorrent { namespace dht
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case messages::announce_peer:
|
case messages::announce_peer:
|
||||||
a["port"] = m_settings.service_port;
|
a["port"] = m.port;
|
||||||
a["info_hash"] = std::string(m.info_hash.begin(), m.info_hash.end());
|
a["info_hash"] = std::string(m.info_hash.begin(), m.info_hash.end());
|
||||||
a["token"] = m.write_token;
|
a["token"] = m.write_token;
|
||||||
#ifdef TORRENT_DHT_VERBOSE_LOGGING
|
#ifdef TORRENT_DHT_VERBOSE_LOGGING
|
||||||
TORRENT_LOG(dht_tracker) << " port: "
|
TORRENT_LOG(dht_tracker)
|
||||||
<< m_settings.service_port
|
<< " port: " << m.port
|
||||||
<< " info_hash: " << boost::lexical_cast<std::string>(m.info_hash);
|
<< " info_hash: " << boost::lexical_cast<std::string>(m.info_hash);
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue