merged fix from RC_0_16

This commit is contained in:
Arvid Norberg 2013-05-20 08:05:39 +00:00
parent 1ad2bc42a1
commit d96ddfad9a
2 changed files with 9 additions and 0 deletions

View File

@ -21,6 +21,8 @@
* fix uTP edge case where udp socket buffer fills up
* fix nagle implementation in uTP
* fix issue where torrents added by URL would not be started immediately
0.16.10 release
* fix encryption level handle invalid values

View File

@ -7555,6 +7555,13 @@ namespace libtorrent
{
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING
debug_log("start_announcing(), files not checked (with valid metadata)");
#endif
return;
}
if (!m_torrent_file->is_valid() && !m_url.empty())
{
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING
debug_log("start_announcing(), downloading URL");
#endif
return;
}