Brad House

Results 141 comments of Brad House

Interesting, so we have to pull DNS servers from all connections, not just the active one is what you're saying. @user-none since you did the android 8+ code, mind taking...

Looks like `DNS_TYPE_WINS` isn't the right thing. It looks like it is some DNS extension by Microsoft for DNS to return the WINS servers on the network ... not for...

Does using WSASend() instead of send() but still passing a non-blocking, but also non-overlapped buffer trigger the same leak? That might be a quicker, less-invasive change. Just looking at the...

Can you elaborate more on what this patch is trying to accomplish? Are you trying to implement LLMNR or something else?

Can you share the specification enhancements for resolv.conf that allow that syntax? I know systemd has some 'resolved.conf' file that supports a DNS syntax like that (and also allows things...

I don't see anywhere that says resolv.conf supports a bracketed syntax, that's typically only used if you're going to append a port, which resolv.conf doesn't support as far as I...

@bagder any insight into this?

I'm not too familiar with DNSSEC (I know, horrible), but wouldn't this trigger additional response data to be returned? How is this to be handled or verified. The current docs...

Looks like there is code around https://github.com/c-ares/c-ares/blob/master/inet_net_pton.c#L178 that is trying to handle this zero padding and just not working. I'm not really sure what https://github.com/c-ares/c-ares/blob/master/inet_net_pton.c#L156 is trying to do, inferring...