diff options
Diffstat (limited to 'pkg/tcpip/tcpip.go')
-rw-r--r-- | pkg/tcpip/tcpip.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/tcpip/tcpip.go b/pkg/tcpip/tcpip.go index b1bd5117f..a5259341b 100644 --- a/pkg/tcpip/tcpip.go +++ b/pkg/tcpip/tcpip.go @@ -202,6 +202,11 @@ func (s *Subnet) Prefix() int { return len(s.mask) * 8 } +// Mask returns the subnet mask. +func (s *Subnet) Mask() AddressMask { + return s.mask +} + // NICID is a number that uniquely identifies a NIC. type NICID int32 |