add PeriodicallyAnnounceTorrentsToDht opt

This commit is contained in:
nikk gitanes
2021-07-19 13:30:34 +03:00
parent fb1e5af2ad
commit ac74e2dc07
6 changed files with 12 additions and 2 deletions

View File

@@ -29,6 +29,7 @@ type BTSets struct {
// BT Config
AcceptPeerCon bool
AnnTorrentsToDht bool
EnableIPv6 bool
DisableTCP bool
DisableUTP bool
@@ -121,6 +122,7 @@ func loadBTSets() {
func SetDefault() {
sets := new(BTSets)
sets.AcceptPeerCon = true
sets.AnnTorrentsToDht = true
sets.EnableDebug = false
sets.DisableUTP = true
sets.CacheSize = 96 * 1024 * 1024 // 96 MB

View File

@@ -64,8 +64,7 @@ func (bt *BTServer) configure() {
cliVers := userAgent //"uTorrent/2210(25302)"
bt.config.AcceptPeerConnections = settings.BTsets.AcceptPeerCon
bt.config.PeriodicallyAnnounceTorrentsToDht = false
bt.config.PeriodicallyAnnounceTorrentsToDht = settings.BTsets.AnnTorrentsToDht
bt.config.Debug = settings.BTsets.EnableDebug
bt.config.DisableIPv6 = settings.BTsets.EnableIPv6 == false
bt.config.DisableTCP = settings.BTsets.DisableTCP