fixed build with logging

This commit is contained in:
Arvid Norberg 2008-03-30 18:31:30 +00:00
parent ce89b00c18
commit a9bb9023fb
1 changed files with 3 additions and 1 deletions

View File

@ -583,7 +583,8 @@ namespace libtorrent
, std::vector<peer_entry>& peers
, int interval
, int complete
, int incomplete)
, int incomplete
, address const& external_ip)
{
std::stringstream s;
s << "TRACKER RESPONSE:\n"
@ -597,6 +598,7 @@ namespace libtorrent
if (!i->pid.is_all_zeros()) s << " " << i->pid;
s << "\n";
}
s << "external ip: " << external_ip << "\n";
debug_log(s.str());
}