Re: unwind(8): simplify query parsing

2022-03-13 Thread Bjorn Ketelaars
On Sun 13/03/2022 14:06, Florian Obser wrote: > anyone? > > On 2022-03-03 19:57 +01, Florian Obser wrote: > > parse_packet() is used by unbound(8) to parse response packets, not > > queries. There is no need to do all this work just to get access to > > the query id and flags. This is what unboun

Re: unwind(8): simplify query parsing

2022-03-13 Thread Florian Obser
anyone? On 2022-03-03 19:57 +01, Florian Obser wrote: > parse_packet() is used by unbound(8) to parse response packets, not > queries. There is no need to do all this work just to get access to > the query id and flags. This is what unbound(8) is doing. > > OK? > > diff --git frontend.c frontend.

unwind(8): simplify query parsing

2022-03-03 Thread Florian Obser
parse_packet() is used by unbound(8) to parse response packets, not queries. There is no need to do all this work just to get access to the query id and flags. This is what unbound(8) is doing. OK? diff --git frontend.c frontend.c index 6316231f4bf..ac53fc01ef1 100644 --- frontend.c +++ frontend.