You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Config.py
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,8 @@ def createArguments(self):
88
88
"http://t.publictracker.xyz:6969/announce",
89
89
"https://tracker.lilithraws.cf:443/announce",
90
90
"https://tracker.babico.name.tr:443/announce",
91
+
"http://opentracker.dg2.i2p/announce",
92
+
"http://opentracker.skank.i2p/announce"
91
93
]
92
94
# Platform specific
93
95
ifsys.platform.startswith("win"):
@@ -311,6 +313,9 @@ def createArguments(self):
311
313
self.parser.add_argument('--tor_use_bridges', help='Use obfuscated bridge relays to avoid Tor block', action='store_true')
312
314
self.parser.add_argument('--tor_hs_limit', help='Maximum number of hidden services in Tor always mode', metavar='limit', type=int, default=10)
313
315
self.parser.add_argument('--tor_hs_port', help='Hidden service port in Tor always mode', metavar='limit', type=int, default=15441)
316
+
317
+
self.parser.add_argument('--i2p', help='enable: Use only for I2P peers, always: Use I2P for every connection', choices=["disable", "enable", "always"], default='enable')
318
+
self.parser.add_argument('--i2p_sam', help='I2P SAM API address', metavar='ip:port', default='127.0.0.1:7656')
0 commit comments