mirror of
https://github.com/openziti/zrok.git
synced 2026-08-28 10:16:59 -05:00
13 lines
249 B
Go
13 lines
249 B
Go
package util
|
|
|
|
import (
|
|
"github.com/michaelquigley/df/dl"
|
|
"github.com/openziti/sdk-golang/ziti"
|
|
)
|
|
|
|
func EnableSuperNetwork(zCfg *ziti.Config) {
|
|
zCfg.MaxControlConnections = 2
|
|
zCfg.MaxDefaultConnections = 1
|
|
dl.Warnf("super networking enabled")
|
|
}
|