mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 10:03:47 +01:00
460cb34d80
Add force relay conn env var for debug purpose. Move another conn related env settings into a common go file.
54 lines
1.5 KiB
Go
54 lines
1.5 KiB
Go
package peer
|
|
|
|
import (
|
|
"os"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
const (
|
|
envICEKeepAliveIntervalSec = "NB_ICE_KEEP_ALIVE_INTERVAL_SEC"
|
|
envICEDisconnectedTimeoutSec = "NB_ICE_DISCONNECTED_TIMEOUT_SEC"
|
|
envICEForceRelayConn = "NB_ICE_FORCE_RELAY_CONN"
|
|
)
|
|
|
|
func iceKeepAlive() time.Duration {
|
|
keepAliveEnv := os.Getenv(envICEKeepAliveIntervalSec)
|
|
if keepAliveEnv == "" {
|
|
return iceKeepAliveDefault
|
|
}
|
|
|
|
log.Debugf("setting ICE keep alive interval to %s seconds", keepAliveEnv)
|
|
keepAliveEnvSec, err := strconv.Atoi(keepAliveEnv)
|
|
if err != nil {
|
|
log.Warnf("invalid value %s set for %s, using default %v", keepAliveEnv, envICEKeepAliveIntervalSec, iceKeepAliveDefault)
|
|
return iceKeepAliveDefault
|
|
}
|
|
|
|
return time.Duration(keepAliveEnvSec) * time.Second
|
|
}
|
|
|
|
func iceDisconnectedTimeout() time.Duration {
|
|
disconnectedTimeoutEnv := os.Getenv(envICEDisconnectedTimeoutSec)
|
|
if disconnectedTimeoutEnv == "" {
|
|
return iceDisconnectedTimeoutDefault
|
|
}
|
|
|
|
log.Debugf("setting ICE disconnected timeout to %s seconds", disconnectedTimeoutEnv)
|
|
disconnectedTimeoutSec, err := strconv.Atoi(disconnectedTimeoutEnv)
|
|
if err != nil {
|
|
log.Warnf("invalid value %s set for %s, using default %v", disconnectedTimeoutEnv, envICEDisconnectedTimeoutSec, iceDisconnectedTimeoutDefault)
|
|
return iceDisconnectedTimeoutDefault
|
|
}
|
|
|
|
return time.Duration(disconnectedTimeoutSec) * time.Second
|
|
}
|
|
|
|
func hasICEForceRelayConn() bool {
|
|
disconnectedTimeoutEnv := os.Getenv(envICEForceRelayConn)
|
|
return strings.ToLower(disconnectedTimeoutEnv) == "true"
|
|
}
|