aboutsummaryrefslogtreecommitdiff
path: root/src/net/dnsconfig_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/dnsconfig_unix.go')
-rw-r--r--src/net/dnsconfig_unix.go11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/net/dnsconfig_unix.go b/src/net/dnsconfig_unix.go
index b0a318279b..0fcf2c6cc3 100644
--- a/src/net/dnsconfig_unix.go
+++ b/src/net/dnsconfig_unix.go
@@ -10,6 +10,7 @@ package net
import (
"internal/bytealg"
+ "internal/stringslite"
"net/netip"
"time"
)
@@ -75,7 +76,7 @@ func dnsReadConfig(filename string) *dnsConfig {
case "options": // magic options
for _, s := range f[1:] {
switch {
- case hasPrefix(s, "ndots:"):
+ case stringslite.HasPrefix(s, "ndots:"):
n, _, _ := dtoi(s[6:])
if n < 0 {
n = 0
@@ -83,13 +84,13 @@ func dnsReadConfig(filename string) *dnsConfig {
n = 15
}
conf.ndots = n
- case hasPrefix(s, "timeout:"):
+ case stringslite.HasPrefix(s, "timeout:"):
n, _, _ := dtoi(s[8:])
if n < 1 {
n = 1
}
conf.timeout = time.Duration(n) * time.Second
- case hasPrefix(s, "attempts:"):
+ case stringslite.HasPrefix(s, "attempts:"):
n, _, _ := dtoi(s[9:])
if n < 1 {
n = 1
@@ -155,10 +156,6 @@ func dnsDefaultSearch() []string {
return nil
}
-func hasPrefix(s, prefix string) bool {
- return len(s) >= len(prefix) && s[:len(prefix)] == prefix
-}
-
func ensureRooted(s string) string {
if len(s) > 0 && s[len(s)-1] == '.' {
return s