Use std::vector instead of std::map for ContextAttribute objects

Now key for ContextAttribute object store is int instead of string.
This commit is contained in:
Tatsuhiro Tsujikawa 2012-09-22 17:37:30 +09:00
parent 0030025bb6
commit e2340efe27
25 changed files with 116 additions and 68 deletions

View file

@ -97,7 +97,7 @@ void HandshakeExtensionMessageTest::testDoReceivedAction()
rg.setDownloadContext(dctx);
SharedHandle<TorrentAttribute> attrs(new TorrentAttribute());
dctx->setAttribute(bittorrent::BITTORRENT, attrs);
dctx->setAttribute(CTX_ATTR_BT, attrs);
dctx->markTotalLengthIsUnknown();
SharedHandle<Peer> peer(new Peer("192.168.0.1", 0));