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 символов.

proxy_opts.go 323B

123456789101112131415161718
  1. package mtglib
  2. import "time"
  3. type ProxyOpts struct {
  4. Secret Secret
  5. Network Network
  6. AntiReplayCache AntiReplayCache
  7. IPBlocklist IPBlocklist
  8. EventStream EventStream
  9. Logger Logger
  10. BufferSize uint
  11. Concurrency uint
  12. CloakPort uint
  13. IdleTimeout time.Duration
  14. PreferIP string
  15. }