* Clear the download rate when finishing a torrent.

* Fixed torrent::set_{bind,local}_address(...) so they update
correctly.

* Tweaked the time left display, show minutes instead of seconds.

* Add earlier check on validity of the socket address of
incoming/outgoing connection.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@610 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2005-12-18 23:49:00 +00:00
parent e45f05ee98
commit 4e8e5a18df
6 changed files with 33 additions and 24 deletions
+8
View File
@@ -158,7 +158,15 @@ apply_max_open_sockets(Control* m, int arg) {
void
apply_bind(Control* m, const std::string& arg) {
bool reopenListen = torrent::listen_port();
if (reopenListen)
torrent::listen_close();
torrent::set_bind_address(arg);
if (reopenListen)
m->core()->listen_open();
}
void