protocol.go 181 B

123456789101112131415
  1. package tuic
  2. const (
  3. Version = 5
  4. )
  5. const (
  6. CommandAuthenticate = iota
  7. CommandConnect
  8. CommandPacket
  9. CommandDissociate
  10. CommandHeartbeat
  11. )
  12. const AuthenticateLen = 2 + 16 + 32