merged upnp fixes from trunk to RC_0_13. Added some upnp logging
This commit is contained in:
parent
01c6300d51
commit
bf7552a4cd
|
@ -126,8 +126,8 @@ namespace libtorrent
|
||||||
ifc.ifc_buf = buf;
|
ifc.ifc_buf = buf;
|
||||||
if (ioctl(s, SIOCGIFCONF, &ifc) < 0)
|
if (ioctl(s, SIOCGIFCONF, &ifc) < 0)
|
||||||
{
|
{
|
||||||
close(s);
|
|
||||||
ec = asio::error_code(errno, asio::error::system_category);
|
ec = asio::error_code(errno, asio::error::system_category);
|
||||||
|
close(s);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,8 +154,8 @@ namespace libtorrent
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
close(s);
|
|
||||||
ec = asio::error_code(errno, asio::error::system_category);
|
ec = asio::error_code(errno, asio::error::system_category);
|
||||||
|
close(s);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -369,7 +369,6 @@ namespace libtorrent
|
||||||
address ret;
|
address ret;
|
||||||
if (GetAdaptersInfo(adapter_info, &out_buf_size) == NO_ERROR)
|
if (GetAdaptersInfo(adapter_info, &out_buf_size) == NO_ERROR)
|
||||||
{
|
{
|
||||||
|
|
||||||
for (PIP_ADAPTER_INFO adapter = adapter_info;
|
for (PIP_ADAPTER_INFO adapter = adapter_info;
|
||||||
adapter != 0; adapter = adapter->Next)
|
adapter != 0; adapter = adapter->Next)
|
||||||
{
|
{
|
||||||
|
|
19
src/upnp.cpp
19
src/upnp.cpp
|
@ -256,8 +256,23 @@ void upnp::on_reply(udp::endpoint const& from, char* buffer
|
||||||
// this upnp device is filtered because it's not in the
|
// this upnp device is filtered because it's not in the
|
||||||
// list of configured routers
|
// list of configured routers
|
||||||
#ifdef TORRENT_UPNP_LOGGING
|
#ifdef TORRENT_UPNP_LOGGING
|
||||||
m_log << time_now_string() << " <== (" << from << ") UPnP device "
|
if (ec)
|
||||||
"ignored because it's not on our network" << std::endl;
|
{
|
||||||
|
m_log << time_now_string() << " <== (" << from << ") error: "
|
||||||
|
<< ec.message() << std::endl;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
std::vector<ip_interface> const& net = enum_net_interfaces(m_io_service, ec);
|
||||||
|
m_log << time_now_string() << " <== (" << from << ") UPnP device "
|
||||||
|
"ignored because it's not on our network ";
|
||||||
|
for (std::vector<ip_interface>::const_iterator i = net.begin()
|
||||||
|
, end(net.end()); i != end; ++i)
|
||||||
|
{
|
||||||
|
m_log << "(" << i->interface_address << ", " << i->netmask << ") ";
|
||||||
|
}
|
||||||
|
m_log << std::endl;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue