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
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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