mirror of https://github.com/aria2/aria2
2008-06-21 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Fixed the code that refers static member variable using -> notation. * src/DefaultPeerStorage.ccpull/1/head
parent
885ca4b795
commit
3389d86fac
|
@ -1,3 +1,8 @@
|
||||||
|
2008-06-21 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
|
Fixed the code that refers static member variable using -> notation.
|
||||||
|
* src/DefaultPeerStorage.cc
|
||||||
|
|
||||||
2008-06-20 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
2008-06-20 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
|
||||||
|
|
||||||
* Release 0.14.0
|
* Release 0.14.0
|
||||||
|
|
|
@ -54,7 +54,7 @@ DefaultPeerStorage::DefaultPeerStorage(const BtContextHandle& btContext,
|
||||||
option(option),
|
option(option),
|
||||||
logger(LogFactory::getInstance()),
|
logger(LogFactory::getInstance()),
|
||||||
btRuntime(BT_RUNTIME(btContext)),
|
btRuntime(BT_RUNTIME(btContext)),
|
||||||
maxPeerListSize(btRuntime->MAX_PEERS+(btRuntime->MAX_PEERS >> 2)),
|
maxPeerListSize(BtRuntime::MAX_PEERS+(BtRuntime::MAX_PEERS >> 2)),
|
||||||
removedPeerSessionDownloadLength(0),
|
removedPeerSessionDownloadLength(0),
|
||||||
removedPeerSessionUploadLength(0),
|
removedPeerSessionUploadLength(0),
|
||||||
_seederStateChoke(new BtSeederStateChoke(btContext)),
|
_seederStateChoke(new BtSeederStateChoke(btContext)),
|
||||||
|
|
Loading…
Reference in New Issue