const.go 135 B

123456789
  1. package encoding
  2. const (
  3. Version = byte(1)
  4. AddrTypeIPv4 = byte(0x01)
  5. AddrTypeIPv6 = byte(0x03)
  6. AddrTypeDomain = byte(0x02)
  7. )