mirror of
https://github.com/jwhited/wgsd.git
synced 2025-04-04 11:09:31 +08:00
go fmt
This commit is contained in:
parent
87de165cec
commit
e2d5af8998
8
wgsd.go
8
wgsd.go
@ -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)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user