netbird/client/internal/wgproxy/loader_test.go
Zoltan Papp b0364da67c
Wg ebpf proxy (#911)
EBPF proxy between TURN (relay) and WireGuard to reduce number of used ports used by the NetBird agent.
- Separate the wg configuration from the proxy logic
- In case if eBPF type proxy has only one single proxy instance
- In case if the eBPF is not supported fallback to the original proxy Implementation

Between the signature of eBPF type proxy and original proxy has 
differences so this is why the factory structure exists
2023-07-26 14:00:47 +02:00

19 lines
225 B
Go

//go:build linux
package wgproxy
import (
"testing"
)
func Test_newEBPF(t *testing.T) {
ebpf := newEBPF()
err := ebpf.load(1234, 51892)
defer func() {
_ = ebpf.free()
}()
if err != nil {
t.Errorf("%s", err)
}
}