darkirc-i2p.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ## List of channels to autojoin for new client connections
  2. autojoin = [
  3. "#dev",
  4. "#memes",
  5. "#philosophy",
  6. "#markets",
  7. "#math",
  8. "#random",
  9. "#lunardao",
  10. ]
  11. ## P2P network settings
  12. [net]
  13. # Magic Bytes to distinguish the p2p network
  14. magic_bytes = [251, 229, 199, 181]
  15. ## Path to the P2P datastore
  16. datastore = "~/.local/share/darkfi/darkirc"
  17. ## Path to a configured hostlist for saving known peers
  18. hostlist = "~/.local/share/darkfi/darkirc/p2p_hostlist.tsv"
  19. ## connection settings
  20. outbound_peer_discovery_cooloff_time = 60
  21. ## Outbound connection slots
  22. outbound_connections = 8
  23. ## Inbound connection slots
  24. inbound_connections = 64
  25. ## Whitelisted transports for outbound connections
  26. active_profiles = ["i2p"]
  27. ## Transports to be mixed
  28. mixed_profiles = []
  29. ## I2p Socks5 proxy
  30. i2p_socks5_proxy = "socks5://127.0.0.1:4447"
  31. [net.profiles."i2p"]
  32. ## Seed nodes to connect to
  33. seeds = [
  34. ##TODO: replace with an official seed address
  35. "i2p://6l2rdfriixo2nh5pr5bt555lyz56qox2ikzia4kuzm4okje7gtmq.b32.i2p:5262"
  36. ]
  37. ## Addresses we want to advertise to peers
  38. external_addrs = ["i2p://youraddress.b32.i2p:25551"]
  39. ## P2P accept addresses
  40. inbound = ["tcp://127.0.0.1:25551"]