10 lines
135 B
Go
Raw Normal View History

2016-07-23 13:17:51 +02:00
package encoding
2016-02-25 21:50:38 +01:00
const (
Version = byte(1)
AddrTypeIPv4 = byte(0x01)
AddrTypeIPv6 = byte(0x03)
AddrTypeDomain = byte(0x02)
)