Results 336 comments of Miek Gieben

I dunno `func ActivateAndServe(l net.Listener, p net.PacketConn, handler Handler) error {` exists you can _give_ it a listener and packetconn so any setup can be done when creating those, so...

I think what is need is to just expose the Conn in some way. In https://codeberg.org/miekg/dns/src/branch/main/response.go#L24 `Conn()` is an interface on responsewriter but we can't do this here. So instead...

I rather copy this than https://codeberg.org/miekg/dns/src/branch/main/response.go#L30 Have a `Conner` interface that returns a net.Conn plus a Session. So ``` go type Conner interface { Conn() net.Conn Session() *Session } ```...

I consider TLS on metric endpoints to be an anti feature

Hi there, this looks like a cool project, and so does coredns-gslb! I think I want to morph both into [atomdns](https://atomdns.miek.nl/). This isn't exactly co-maintaining, and I need to look...

Ha nice, using your own parsing, see miekg/dns I _also_ assumed it was fully used. I get your point, learning that lowlevel stuff is good and fun. please take a...