From 2439cad4aca1c44a106652f3acfd2bb8edd12917 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 3 Sep 2008 12:14:20 +0000 Subject: [PATCH] 2008-09-03 Tatsuhiro Tsujikawa DEFAULT_ANNOUNCE_INTERVAL: unsigned int -> time_t * src/BtAnnounce.h --- ChangeLog | 5 +++++ src/BtAnnounce.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 81254f67..16c71dcd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-09-03 Tatsuhiro Tsujikawa + + DEFAULT_ANNOUNCE_INTERVAL: unsigned int -> time_t + * src/BtAnnounce.h + 2008-09-03 Tatsuhiro Tsujikawa If an error occurred with a URI, remove identical URI from remaining diff --git a/src/BtAnnounce.h b/src/BtAnnounce.h index 1eb6978f..32759758 100644 --- a/src/BtAnnounce.h +++ b/src/BtAnnounce.h @@ -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 BtAnnounceHandle;