Highly-opinionated (ex-bullshit-free) MTPROTO proxy for Telegram. If you use v1.0 or upgrade broke you proxy, please read the chapter Version 2
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718
  1. // Package ipblocklist contains default implementation of the
  2. // [mtglib.IPBlocklist] for mtg.
  3. //
  4. // Please check documentation for [mtglib.IPBlocklist] interface to get an idea
  5. // of this abstraction.
  6. package ipblocklist
  7. import "time"
  8. const (
  9. // DefaultFireholDownloadConcurrency defines a default max number of
  10. // concurrent downloads of ip blocklists for Firehol.
  11. DefaultFireholDownloadConcurrency = 1
  12. // DefaultFireholUpdateEach defines a default time period when Firehol
  13. // requests updates of the blocklists.
  14. DefaultFireholUpdateEach = 6 * time.Hour
  15. )