Categorygithub.com/yb1682003/dns_resolver
modulepackage
0.0.1
Repository: https://github.com/yb1682003/dns_resolver.git
Documentation: pkg.go.dev

# README

Simple dns resolver implemented in go

Build Status Go Walker

Based on based on miekg/dns.

Features

  • Uses provided dns servers array in random order
  • Retries dns requests in case of i/o timeout

Installing

Using go get

$ go get github.com/bogdanovich/dns_resolver

After this command dns_resolver is ready to use. Its source will be in:

$GOPATH/src/github.com/bogdanovich/dns_resolver

Example

package main

import (
	"log"
	"github.com/bogdanovich/dns_resolver"
)

func main() {
	resolver := dns_resolver.New([]string{"8.8.8.8", "8.8.4.4"})
	// OR
	// resolver := dns_resolver.NewFromResolvConf("resolv.conf")

	// In case of i/o timeout
	resolver.RetryTimes = 5

	ip, err := resolver.LookupHost("google.com")
	if err != nil {
		log.Fatal(err.Error())
	}
	log.Println(ip)
	// Output [216.58.192.46]
}

# Functions

New initializes DnsResolver.
NewFromResolvConf initializes DnsResolver from resolv.conf like file.

# Structs

DnsResolver represents a dns resolver.