all: use various net/netip parse funcs directly
Mechanical change with perl+goimports. Changed {Must,}Parse{IP,IPPrefix,IPPort} to their netip variants, then goimports -d . Finally, removed the net/netaddr wrappers, to prevent future use. Updates #5162 Change-Id: I59c0e38b5fbca5a935d701645789cddf3d7863ad Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:

committed by
Brad Fitzpatrick

parent
730ca4203c
commit
6a396731eb
@ -9,6 +9,7 @@ package wf
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/netip"
|
||||
"os"
|
||||
|
||||
"golang.org/x/sys/windows"
|
||||
@ -18,10 +19,10 @@ import (
|
||||
|
||||
// Known addresses.
|
||||
var (
|
||||
linkLocalRange = netaddr.MustParseIPPrefix("ff80::/10")
|
||||
linkLocalDHCPMulticast = netaddr.MustParseIP("ff02::1:2")
|
||||
siteLocalDHCPMulticast = netaddr.MustParseIP("ff05::1:3")
|
||||
linkLocalRouterMulticast = netaddr.MustParseIP("ff02::2")
|
||||
linkLocalRange = netip.MustParsePrefix("ff80::/10")
|
||||
linkLocalDHCPMulticast = netip.MustParseAddr("ff02::1:2")
|
||||
siteLocalDHCPMulticast = netip.MustParseAddr("ff05::1:3")
|
||||
linkLocalRouterMulticast = netip.MustParseAddr("ff02::2")
|
||||
)
|
||||
|
||||
type direction int
|
||||
|
Reference in New Issue
Block a user