mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Use 64 bits random bytes as GID
This change replaces the current 64 bit sequential GID with 64 bits random bytes GID in an attempt to support persistent GID. Internally, the GID is stored as uint64_t. For human representation and RPC interface, GID is represented as 16 bytes hex string. For console readout, 16 bytes are too long, so it is abbreviated to first 6 bytes. When querying GID in RPC calls, user can speicfy the prefix of GID as long as the prefix is shared by more than 1 GID entries.
This commit is contained in:
parent
04586f50b1
commit
b9da9d4ed3
32 changed files with 627 additions and 192 deletions
|
@ -94,7 +94,7 @@ void HandshakeExtensionMessageTest::testDoReceivedAction()
|
|||
SharedHandle<DownloadContext> dctx
|
||||
(new DownloadContext(METADATA_PIECE_SIZE, 0));
|
||||
SharedHandle<Option> op(new Option());
|
||||
RequestGroup rg(op);
|
||||
RequestGroup rg(GroupId::create(), op);
|
||||
rg.setDownloadContext(dctx);
|
||||
|
||||
SharedHandle<TorrentAttribute> attrs(new TorrentAttribute());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue