netbird/client/internal/wgproxy/factory_linux.go
Zoltan Papp 64f949abbb Integrate relay into peer conn
- extend mgm with relay address
- extend signaling with remote peer's relay address
- start setup relay connection before engine start
2024-06-14 14:40:31 +02:00

14 lines
165 B
Go

//go:build !android
package wgproxy
import (
"context"
)
func NewFactory(ctx context.Context, wgPort int) *Factory {
f := &Factory{wgPort: wgPort}
return f
}