Michael Conrad

Results 145 comments of Michael Conrad

The parsing is currently internal. So, no, you cannot parse just data right now. That being said, my plan was to add an extensibility API to version 2 sometime in...

No this is currently not possible. Mostly by design for performance reasons. I don't keep the bytes around after sending the question / parsing the response which gives a low...

Hi @matthew-a-thomas I'm actually using this library primarily for service discovery, but in a completely different scenario. I'm using Consul's DNS endpoint for service discovery in a micro service project...

I always wanted to add a lot of the security features of the DNS protocol itself. But, mostly because of time constraints, never had the chance to really work on...

Hi @jol64 and @Indigo744 I did some testing for DoH manually a while ago. The problem there is that we'd have to rely on HttpClient. The biggest problem I'd have...

@Indigo744 After looking at RestClient, that's just a wrapper for HttpClient and doesn't take care of lifetime of the message handler either. Not sure how that would help ;) @jol64...

No, I'm not doing that and also not reading the configuration if available. Same as `dig` doesn't do it per default. You'd have to explicitly add `+search` I think. Could...

Sure go ahead, happy to accept PRs ;)

@ingenthr @toddschilling I just added DnsSuffix to my NameServer type, if a network adapter has a DnsSuffix set, that property should be set, too. I might not build anything which...

No, DnsClient only reads wire format from a response from a server. There is currently no code which reads a zone file. I might add that at some point but...