mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-29 04:55:31 +00:00
wgengine/filter: fix go vet failures
Updates #cleanup Change-Id: I7b63daa8003159cd1b39c2ea79224c202fd6acbf Signed-off-by: Adrian Dewhurst <adrian@tailscale.com>
This commit is contained in:
parent
781f79408d
commit
e26e74485a
@ -768,7 +768,7 @@ func ports(s string) PortRange {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
panic(fmt.Sprintf("invalid NetPortRange %q", s))
|
panic(fmt.Sprintf("invalid NetPortRange %q", s))
|
||||||
}
|
}
|
||||||
return PortRange{uint16(first), uint16(last)}
|
return PortRange{First: uint16(first), Last: uint16(last)}
|
||||||
}
|
}
|
||||||
|
|
||||||
func netports(netPorts ...string) (ret []NetPortRange) {
|
func netports(netPorts ...string) (ret []NetPortRange) {
|
||||||
@ -814,11 +814,11 @@ func TestMatchesFromFilterRules(t *testing.T) {
|
|||||||
Dsts: []NetPortRange{
|
Dsts: []NetPortRange{
|
||||||
{
|
{
|
||||||
Net: netip.MustParsePrefix("0.0.0.0/0"),
|
Net: netip.MustParsePrefix("0.0.0.0/0"),
|
||||||
Ports: PortRange{22, 22},
|
Ports: PortRange{First: 22, Last: 22},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Net: netip.MustParsePrefix("::0/0"),
|
Net: netip.MustParsePrefix("::0/0"),
|
||||||
Ports: PortRange{22, 22},
|
Ports: PortRange{First: 22, Last: 22},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Srcs: []netip.Prefix{
|
Srcs: []netip.Prefix{
|
||||||
@ -848,7 +848,7 @@ func TestMatchesFromFilterRules(t *testing.T) {
|
|||||||
Dsts: []NetPortRange{
|
Dsts: []NetPortRange{
|
||||||
{
|
{
|
||||||
Net: netip.MustParsePrefix("1.2.0.0/16"),
|
Net: netip.MustParsePrefix("1.2.0.0/16"),
|
||||||
Ports: PortRange{22, 22},
|
Ports: PortRange{First: 22, Last: 22},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Srcs: []netip.Prefix{
|
Srcs: []netip.Prefix{
|
||||||
|
Loading…
Reference in New Issue
Block a user