This commit is contained in:
George Harvey 2021-04-06 15:43:28 +01:00 committed by GitHub
parent 87de165cec
commit e2d5af8998
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,9 +5,9 @@ import (
"encoding/base32"
"encoding/base64"
"fmt"
"math"
"net"
"strings"
"math"
"github.com/coredns/coredns/plugin"
clog "github.com/coredns/coredns/plugin/pkg/log"
@ -42,7 +42,7 @@ type Zone struct {
serveSelf bool // flag to enable serving data about self
selfEndpoint *net.UDPAddr // overrides the self endpoint value
selfAllowedIPs []net.IPNet // self allowed IPs
onlySubnets bool //
onlySubnets bool //
}
type wgctrlClient interface {
@ -186,7 +186,7 @@ func networkSizes(ips []net.IPNet) float64 {
for _, ip := range ips {
ones, bits := ip.Mask.Size()
bitsize := (bits - ones)
tot += math.Pow(2,float64(bitsize))
tot += math.Pow(2, float64(bitsize))
}
return tot
}
@ -201,7 +201,7 @@ func getPeers(client wgctrlClient, zone *Zone, state request.Request) (
if !zone.onlySubnets {
peers = append(peers, device.Peers...)
} else {
for _, peer := range device.Peers{
for _, peer := range device.Peers {
if t := networkSizes(peer.AllowedIPs); t > 1 { // could be more complex, e.g allow user to specify a threshold
peers = append(peers, peer)
}