added Accept: application/oblivious-dns-message HTTP header to odoh client. I know it's still a draft, but that's what it says clients SHOULD do (see section 4.1).
log errors returned from app.Run()
automatically make domains fqdns
I also did a bit of code cleanup, mostly involving stuff in commands/common.go and changing errors.New(fmt.Sprintf()) to fmt.Errorf() in commands/request.go.
Summary of changes:
Accept: application/oblivious-dns-message
HTTP header to odoh client. I know it's still a draft, but that's what it says clients SHOULD do (see section 4.1).app.Run()
I also did a bit of code cleanup, mostly involving stuff in commands/common.go and changing
errors.New(fmt.Sprintf())
tofmt.Errorf()
in commands/request.go.