[client] Use dynamic dns route resolution on iOS (#3243)

This commit is contained in:
Viktor Liu 2025-01-27 18:13:10 +01:00 committed by GitHub
parent 5c05131a94
commit a32ec97911
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,7 @@ import (
"context" "context"
"fmt" "fmt"
"reflect" "reflect"
runtime "runtime"
"time" "time"
"github.com/hashicorp/go-multierror" "github.com/hashicorp/go-multierror"
@ -439,7 +440,7 @@ func handlerType(rt *route.Route, useNewDNSRoute bool) int {
return handlerTypeStatic return handlerTypeStatic
} }
if useNewDNSRoute { if useNewDNSRoute && runtime.GOOS != "ios" {
return handlerTypeDomain return handlerTypeDomain
} }
return handlerTypeDynamic return handlerTypeDynamic