mirror of
https://github.com/jwhited/wgsd.git
synced 2025-04-04 11:09:31 +08:00
corrects variable from testing
This commit is contained in:
parent
b5bd1bd874
commit
680b58305b
2
wgsd.go
2
wgsd.go
@ -202,7 +202,7 @@ func getPeers(client wgctrlClient, zone *Zone, state request.Request) (
|
|||||||
peers = append(peers, device.Peers...)
|
peers = append(peers, device.Peers...)
|
||||||
} else {
|
} else {
|
||||||
for _, peer := range device.Peers{
|
for _, peer := range device.Peers{
|
||||||
if t := networkSizes(networks); t > 1 { // could be more complex, e.g allow user to specify a threshold
|
if t := networkSizes(peer.AllowedIPs); t > 1 { // could be more complex, e.g allow user to specify a threshold
|
||||||
peers = append(peers, peer)
|
peers = append(peers, peer)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user