2024-10-22 20:53:14 +02:00
|
|
|
package wgproxy
|
|
|
|
|
|
|
|
import (
|
2024-10-24 11:43:14 +02:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
2024-10-22 20:53:14 +02:00
|
|
|
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 {
|
2024-10-24 11:43:14 +02:00
|
|
|
log.Infof("WireGuard Proxy Factory will produce UDP proxy")
|
2024-10-22 20:53:14 +02:00
|
|
|
f := &KernelFactory{
|
|
|
|
wgPort: wgPort,
|
|
|
|
}
|
|
|
|
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *KernelFactory) GetProxy() Proxy {
|
|
|
|
return udpProxy.NewWGUDPProxy(w.wgPort)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *KernelFactory) Free() error {
|
|
|
|
return nil
|
|
|
|
}
|