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