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
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

init.go 556B

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. )