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.

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