We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06bd49f commit 437c966Copy full SHA for 437c966
client/internal/engine.go
@@ -250,7 +250,7 @@ func NewEngine(
250
checks: checks,
251
connSemaphore: semaphoregroup.NewSemaphoreGroup(connInitLimit),
252
dnsFwdPort: dnsfwd.ListenPort(),
253
- probeStunTurn: relay.NewStunTurnProb(relay.DefaultCacheTTL),
+ probeStunTurn: relay.NewStunTurnProbe(relay.DefaultCacheTTL),
254
}
255
256
sm := profilemanager.NewServiceManager("")
client/internal/relay/relay.go
@@ -43,7 +43,7 @@ type StunTurnProbe struct {
43
mu sync.Mutex
44
45
46
-func NewStunTurnProb(cacheTTL time.Duration) *StunTurnProbe {
+func NewStunTurnProbe(cacheTTL time.Duration) *StunTurnProbe {
47
return &StunTurnProbe{
48
cacheTTL: cacheTTL,
49
0 commit comments