deprecate identify_client() and fingerprint type

This commit is contained in:
arvidn 2016-12-17 02:05:34 -05:00 committed by Arvid Norberg
parent 916fc92c49
commit 814f7363a4
2 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,4 @@
* deprecate identify_client() and fingerprint type
* make sequence number for mutable DHT items backed by std::int64_t
* tweaked storage_interface to have stronger type safety
* deprecate relative times in torrent_status, replaced by std::chrono::time_point

View File

@ -6898,9 +6898,8 @@ namespace aux {
for (auto const& p : resp.peers)
{
debug_log(" %16s %5d %s %s", p.hostname.c_str(), p.port
, p.pid.is_all_zeros() ? "" : to_hex(p.pid).c_str()
, identify_client(p.pid).c_str());
debug_log(" %16s %5d %s", p.hostname.c_str(), p.port
, p.pid.is_all_zeros() ? "" : to_hex(p.pid).c_str());
}
for (auto const& p : resp.peers4)
{