mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-25 17:43:38 +01:00
4e918e55ba
Rethink the peer reconnection implementation
30 lines
535 B
Go
30 lines
535 B
Go
package wgproxy
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
udpProxy "github.com/netbirdio/netbird/client/iface/wgproxy/udp"
|
|
)
|
|
|
|
// KernelFactory todo: check eBPF support on FreeBSD
|
|
type KernelFactory struct {
|
|
wgPort int
|
|
}
|
|
|
|
func NewKernelFactory(wgPort int) *KernelFactory {
|
|
log.Infof("WireGuard Proxy Factory will produce UDP proxy")
|
|
f := &KernelFactory{
|
|
wgPort: wgPort,
|
|
}
|
|
|
|
return f
|
|
}
|
|
|
|
func (w *KernelFactory) GetProxy() Proxy {
|
|
return udpProxy.NewWGUDPProxy(w.wgPort)
|
|
}
|
|
|
|
func (w *KernelFactory) Free() error {
|
|
return nil
|
|
}
|