mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-23 00:23:36 +01:00
30 lines
564 B
Go
30 lines
564 B
Go
|
package iface
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
// WGAddress Wireguard parsed address
|
||
|
type WGAddress struct {
|
||
|
IP net.IP
|
||
|
Network *net.IPNet
|
||
|
}
|
||
|
|
||
|
// parseWGAddress parse a string ("1.2.3.4/24") address to WG Address
|
||
|
func parseWGAddress(address string) (WGAddress, error) {
|
||
|
ip, network, err := net.ParseCIDR(address)
|
||
|
if err != nil {
|
||
|
return WGAddress{}, err
|
||
|
}
|
||
|
return WGAddress{
|
||
|
IP: ip,
|
||
|
Network: network,
|
||
|
}, nil
|
||
|
}
|
||
|
|
||
|
func (addr WGAddress) String() string {
|
||
|
maskSize, _ := addr.Network.Mask.Size()
|
||
|
return fmt.Sprintf("%s/%d", addr.IP.String(), maskSize)
|
||
|
}
|