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

consts.go 184B

123456789101112131415161718192021
  1. package faketls
  2. const (
  3. TLSHandshakeLength = 1 + 2 + 2 + 512
  4. )
  5. var (
  6. faketlsStartBytes = [...]byte{
  7. 0x16,
  8. 0x03,
  9. 0x01,
  10. 0x02,
  11. 0x00,
  12. 0x01,
  13. 0x00,
  14. 0x01,
  15. 0xfc,
  16. 0x03,
  17. 0x03,
  18. }
  19. )