Use gotools

This commit is contained in:
Aleksey Dmitrevskiy 2019-02-27 13:12:06 +03:00
parent bf893d488a
commit 87c8114291
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,6 @@ func setDNSServers(w *http.ResponseWriter, r *http.Request, upstreams bool) {
http.Error(*w, errorText, http.StatusInternalServerError) http.Error(*w, errorText, http.StatusInternalServerError)
return return
} }
_, err = fmt.Fprintf(*w, "OK %d servers\n", count) _, err = fmt.Fprintf(*w, "OK %d servers\n", count)
if err != nil { if err != nil {
errorText := fmt.Sprintf("Couldn't write body: %s", err) errorText := fmt.Sprintf("Couldn't write body: %s", err)
@ -400,6 +399,7 @@ func setDNSServers(w *http.ResponseWriter, r *http.Request, upstreams bool) {
} }
} }
// checkBootstrapDNS checks if host is plain DNS
func checkBootstrapDNS(host string) error { func checkBootstrapDNS(host string) error {
// Check if host is ip without port // Check if host is ip without port
if net.ParseIP(host) != nil { if net.ParseIP(host) != nil {