mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-23 08:33:45 +01:00
24 lines
412 B
Go
24 lines
412 B
Go
//go:build !android
|
|
|
|
package wgproxy
|
|
|
|
import (
|
|
"context"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func NewFactory(ctx context.Context, wgPort int) *Factory {
|
|
f := &Factory{wgPort: wgPort}
|
|
|
|
ebpfProxy := NewWGEBPFProxy(ctx, wgPort)
|
|
err := ebpfProxy.listen()
|
|
if err != nil {
|
|
log.Warnf("failed to initialize ebpf proxy, fallback to user space proxy: %s", err)
|
|
return f
|
|
}
|
|
|
|
f.ebpfProxy = ebpfProxy
|
|
return f
|
|
}
|