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. // IPBlocklist for mtg.
  3. //
  4. // Please check documentation for mtglib.IPBlocklist interface to get an
  5. // idea 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
  13. // Firehol requests updates of the blocklists.
  14. DefaultFireholUpdateEach = 6 * time.Hour
  15. )