mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-14 19:00:50 +01:00
64f949abbb
- extend mgm with relay address - extend signaling with remote peer's relay address - start setup relay connection before engine start
14 lines
165 B
Go
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
|
|
}
|