added SOCKS5 proxy support
All checks were successful
Run Integration Tests / test (push) Successful in 33s

This commit is contained in:
partisan 2025-01-12 16:46:52 +01:00
parent 234f1dd3be
commit 614ce8903e
22 changed files with 501 additions and 106 deletions

View file

@ -60,8 +60,12 @@ func main() {
}
config.PeerID = hostID
if config.CrawlerProxyEnabled || config.MetaProxyEnabled {
InitProxies()
}
// Initiate Browser Agent updater
if config.CrawlerEnabled || config.IndexerEnabled {
if config.MetaSearchEnabled || config.IndexerEnabled {
go periodicAgentUpdate()
}