mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-03 09:21:12 +01:00
18 lines
457 B
Go
18 lines
457 B
Go
|
package iface
|
||
|
|
||
|
import (
|
||
|
"net"
|
||
|
"time"
|
||
|
|
||
|
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
|
||
|
)
|
||
|
|
||
|
type wgConfigurer interface {
|
||
|
configureInterface(privateKey string, port int) error
|
||
|
updatePeer(peerKey string, allowedIps string, keepAlive time.Duration, endpoint *net.UDPAddr, preSharedKey *wgtypes.Key) error
|
||
|
removePeer(peerKey string) error
|
||
|
addAllowedIP(peerKey string, allowedIP string) error
|
||
|
removeAllowedIP(peerKey string, allowedIP string) error
|
||
|
close()
|
||
|
}
|