doq-go

module
v0.16.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 20, 2026 License: MIT

README

doq-go

Release Go version Tantalor93 lint codecov Go Report Card

DNS over QUIC (=DoQ, as defined in RFC9250) client library written in Golang and built on top quic-go and dns libraries.

Usage in your project

add dependency

go get github.com/tantalor93/doq-go

Examples

// create client with default settings resolving via AdGuard DoQ Server
client := doq.NewClient("dns.adguard-dns.com:853")

// prepare payload
q := dns.Msg{}
q.SetQuestion("www.google.com.", dns.TypeA)

// send DNS query
r, err := client.Send(context.Background(), &q)
if err != nil {
    panic(err)
}
// do something with response
fmt.Println(dns.RcodeToString[r.Rcode])

Directories

Path Synopsis
Package doq provides API for calling DoQ servers.
Package doq provides API for calling DoQ servers.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL