Files
netbird/client/internal/ebpf/manager.go
2023-08-17 08:36:11 +02:00

9 lines
177 B
Go

package ebpf
type Manager interface {
LoadDNSFwd(fakeIP, dnsIP string, dnsPort int) error
FreeDNSFwd() error
LoadWgProxy(proxyPort, wgPort int) error
FreeWGProxy() error
}