get dht back working for now
This commit is contained in:
parent
396a245d84
commit
f9f1b95a4e
21
src/core.py
21
src/core.py
|
@ -855,12 +855,23 @@ class Manager:
|
|||
|
||||
for pref in PREF_FUNCTIONS:
|
||||
if PREF_FUNCTIONS[pref] is not None:
|
||||
if pref == "listen_on" and self.get_pref("random_port"):
|
||||
if (PREF_FUNCTIONS[pref] == PREF_FUNCTIONS["listen_on"]):
|
||||
if self.get_pref("random_port") == False:
|
||||
PREF_FUNCTIONS[pref](self.get_pref(pref))
|
||||
else:
|
||||
if deluge_core.listening_port() != 0:
|
||||
for i in xrange(int(self.get_pref("listen_on")[0]),\
|
||||
int(self.get_pref("listen_on")[1])):
|
||||
if deluge_core.listening_port() != i:
|
||||
pass
|
||||
else:
|
||||
import random
|
||||
|
||||
randrange = lambda: random.randrange(49152, 65535)
|
||||
|
||||
ports = [randrange(), randrange()]
|
||||
ports = [random.randrange(49152, 65535), random.randrange(49152, 65535)]
|
||||
ports.sort()
|
||||
deluge_core.set_listen_on(ports)
|
||||
else:
|
||||
import random
|
||||
ports = [random.randrange(49152, 65535), random.randrange(49152, 65535)]
|
||||
ports.sort()
|
||||
deluge_core.set_listen_on(ports)
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue