From fa613131c2f0e0faa6a781312fd42702dd97a1ff Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sun, 13 Jul 2014 06:34:59 +0000 Subject: [PATCH] removed unused session_impl member, m_next_disk_peer --- include/libtorrent/aux_/session_impl.hpp | 4 ---- src/session_impl.cpp | 5 ----- 2 files changed, 9 deletions(-) diff --git a/include/libtorrent/aux_/session_impl.hpp b/include/libtorrent/aux_/session_impl.hpp index 26198a900..64413da73 100644 --- a/include/libtorrent/aux_/session_impl.hpp +++ b/include/libtorrent/aux_/session_impl.hpp @@ -1156,10 +1156,6 @@ namespace libtorrent // to the next torrent to auto-scrape int m_next_scrape_torrent; - // this is the round-robin cursor for peers that - // get to download again after the disk has been - // blocked - connection_map::iterator m_next_disk_peer; #if TORRENT_USE_INVARIANT_CHECKS void check_invariant() const; #endif diff --git a/src/session_impl.cpp b/src/session_impl.cpp index 764a9ec29..57ae0380d 100644 --- a/src/session_impl.cpp +++ b/src/session_impl.cpp @@ -583,7 +583,6 @@ namespace aux { m_next_downloading_connect_torrent = 0; m_next_finished_connect_torrent = 0; m_next_scrape_torrent = 0; - m_next_disk_peer = m_connections.begin(); m_tcp_mapping[0] = -1; m_tcp_mapping[1] = -1; @@ -3190,8 +3189,6 @@ retry: TORRENT_ASSERT(!c->m_in_constructor); m_connections.insert(c); c->start(); - // update the next disk peer round-robin cursor - if (m_next_disk_peer == m_connections.end()) m_next_disk_peer = m_connections.begin(); } } @@ -3259,9 +3256,7 @@ retry: connection_map::iterator i = m_connections.find(sp); // make sure the next disk peer round-robin cursor stays valid - if (m_next_disk_peer == i) ++m_next_disk_peer; if (i != m_connections.end()) m_connections.erase(i); - if (m_next_disk_peer == m_connections.end()) m_next_disk_peer = m_connections.begin(); } // implements alert_dispatcher