fixed bug related to flag_merge_resume_http_seeds flag in add_torrent_params (#813)
This commit is contained in:
parent
4e0a4db9b4
commit
96ea0dc4d0
|
@ -1,5 +1,6 @@
|
|||
1.1.1 release
|
||||
|
||||
* fixed bug related to flag_merge_resume_http_seeds flag in add_torrent_params
|
||||
* fixed inverted priority of incoming piece suggestions
|
||||
* optimize allow-fast logic
|
||||
* fix issue where FAST extension messages were not used during handshake
|
||||
|
|
|
@ -265,7 +265,7 @@ namespace libtorrent
|
|||
// add_torrent_params are also replaced. The default behavior is to
|
||||
// have any web seeds in the resume data take precedence over whatever
|
||||
// is passed in here as well as the .torrent file.
|
||||
flag_merge_resume_http_seeds = 0x2000,
|
||||
flag_merge_resume_http_seeds = 0x8000,
|
||||
|
||||
// the stop when ready flag. Setting this flag is equivalent to calling
|
||||
// torrent_handle::stop_when_ready() immediately after the torrent is
|
||||
|
|
Loading…
Reference in New Issue