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

request.go 380B

12345678910111213141516171819
  1. package protocol
  2. import (
  3. "context"
  4. "go.uber.org/zap"
  5. "github.com/9seconds/mtg/conntypes"
  6. "github.com/9seconds/mtg/wrappers"
  7. )
  8. type TelegramRequest struct {
  9. Logger *zap.SugaredLogger
  10. ClientConn wrappers.StreamReadWriteCloser
  11. ConnID conntypes.ConnID
  12. Ctx context.Context
  13. Cancel context.CancelFunc
  14. ClientProtocol ClientProtocol
  15. }