deprecate identify_client() and fingerprint type
This commit is contained in:
parent
916fc92c49
commit
814f7363a4
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue