mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-11 17:29:07 +02:00
8 lines
184 B
Go
8 lines
184 B
Go
package manager
|
|
|
|
// Manager is used to load multiple eBPF programs. E.g., the WireGuard proxy
|
|
type Manager interface {
|
|
LoadWgProxy(proxyPort, wgPort int) error
|
|
FreeWGProxy() error
|
|
}
|