2008-09-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>

DEFAULT_ANNOUNCE_INTERVAL: unsigned int -> time_t
	* src/BtAnnounce.h
This commit is contained in:
Tatsuhiro Tsujikawa 2008-09-03 12:14:20 +00:00
parent d3453a8387
commit 2439cad4ac
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-09-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
DEFAULT_ANNOUNCE_INTERVAL: unsigned int -> time_t
* src/BtAnnounce.h
2008-09-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
If an error occurred with a URI, remove identical URI from remaining

View File

@ -123,7 +123,7 @@ public:
static const std::string PEERS;
static const unsigned int DEFAULT_ANNOUNCE_INTERVAL = 120;
static const time_t DEFAULT_ANNOUNCE_INTERVAL = 120;
};
typedef SharedHandle<BtAnnounce> BtAnnounceHandle;