added dummy storage class to disable disk I/O and an option to disable hash checking (for performance testing and simulation)

This commit is contained in:
Arvid Norberg
2009-08-02 06:40:45 +00:00
parent cc4084f943
commit 63368c1383
6 changed files with 107 additions and 1 deletions

View File

@@ -3557,6 +3557,7 @@ session_settings
int write_cache_line_size;
int optimistic_disk_retry;
bool disable_hash_check;
};
``user_agent`` this is the client identification to the tracker.
@@ -3975,6 +3976,12 @@ libtorrent will only do this automatically for auto managed torrents.
You can explicitly take a torrent out of upload only mode using
`set_upload_mode()`_.
``disable_hash_check`` controls if downloaded pieces are verified against
the piece hashes in the torrent file or not. The default is false, i.e.
to verify all downloaded data. It may be useful to turn this off for performance
profiling and simulation scenarios. Do not disable the hash check for regular
bittorrent clients.
pe_settings
===========