netaddr-go
netaddr-go copied to clipboard
A Go library for performing calculations on IPv4 and IPv6 subnets.
Results
1
netaddr-go issues
Sort by
recently updated
recently updated
newest added
foundSubnets, _ := netaddr.NewIPv4NetList([]string{"10.0.0.0/16"}) supernet, _ := netaddr.ParseIPv4Net("10.0.0.0/16") filled := supernet.Fill(foundSubnets) // panics because foundSubnets is the same as the supernet 10.0.0.0/16 ``` func (net *IPv4Net) Fill(list IPv4NetList) IPv4NetList {...