*** empty log message ***

This commit is contained in:
Arvid Norberg 2004-01-31 15:07:49 +00:00
parent e8fabd3735
commit ead9297a7e
3 changed files with 5 additions and 3 deletions

View File

@ -120,7 +120,8 @@ means it can resume a torrent downloaded by any client.</li>
<p>Functions that are yet to be implemented:</p>
<blockquote>
<ul class="simple">
<li>better handling of peers that send bad data</li>
<li>large file support on linux and Mac OS X.</li>
<li>better identification of peers that send bad data</li>
<li>ip-filters</li>
<li>file-level priority</li>
</ul>

View File

@ -56,6 +56,7 @@ __ udp_tracker_protocol.html
Functions that are yet to be implemented:
* large file support on linux and Mac OS X.
* better identification of peers that send bad data
* ip-filters
* file-level priority

View File

@ -134,9 +134,9 @@ namespace libtorrent
m_file.clear();
if (m_open_mode == mode_in)
return m_file.tellg();
return static_cast<std::streamoff>(m_file.tellg());
else
return m_file.tellp();
return static_cast<std::streamoff>(m_file.tellp());
}
fs::fstream m_file;