blob: 457b89d7ace79f9d14f47b490e21dadf8992b41e [file] [log] [blame]
Scott Bakered4efab2020-01-13 19:12:25 -08001// Package addrtype provides Address type assigned numbers.
2package addrtype
3
4// Address type IDs.
5const (
6 IPv4 int32 = 2
7 Directional int32 = 3
8 ChaosNet int32 = 5
9 XNS int32 = 6
10 ISO int32 = 7
11 DECNETPhaseIV int32 = 12
12 AppleTalkDDP int32 = 16
13 NetBios int32 = 20
14 IPv6 int32 = 24
15)