Re: dig(1): SVCB and HTTPS RR types

2022-07-02 Thread Florian Obser
anyone? On 2022-06-25 13:15 +02, Florian Obser wrote: > See https://datatracker.ietf.org/doc/draft-ietf-dnsop-svcb-https/ > > $ ./obj/dig @8.8.8.8 +norec _dns.resolver.arpa svcb > > ; <<>> dig 9.10.8-P1 <<>> @8.8.8.8 +norec _dns.resolver.arpa svcb > ; (1 server found) > ;; global options: +cmd >

Re: netstart: create virtual interfaces upfront when passing specific ones

2022-07-02 Thread Klemens Nanni
On Sat, Jul 02, 2022 at 03:00:00PM +0200, Alexander Hall wrote: > On Thu, Jun 30, 2022 at 03:35:05PM +, Klemens Nanni wrote: > > On Tue, Dec 07, 2021 at 08:15:41PM +, Klemens Nanni wrote: > > > On Tue, Nov 23, 2021 at 01:17:14AM +, Klemens Nanni wrote: > > > > On Tue, Nov 16, 2021 at 11

Remove leftovers of old poll/select

2022-07-02 Thread Visa Hankala
Remove the leftovers of the old poll/select mechanism. This includes the fields si_seltid and si_flags in struct selinfo. They should now always be zero because nothing calls selrecord(). selwakeup() becomes a wrapper for KNOTE(). I do not want to change it further in this patch. This code can be

Re: netstart: create virtual interfaces upfront when passing specific ones

2022-07-02 Thread Alexander Hall
On Thu, Jun 30, 2022 at 03:35:05PM +, Klemens Nanni wrote: > On Tue, Dec 07, 2021 at 08:15:41PM +, Klemens Nanni wrote: > > On Tue, Nov 23, 2021 at 01:17:14AM +, Klemens Nanni wrote: > > > On Tue, Nov 16, 2021 at 11:09:40PM +, Klemens Nanni wrote: > > > > Run on boot without argumen

Re: a few fixes for cat bugs

2022-07-02 Thread Otto Moerbeek
On Sat, Jul 02, 2022 at 08:38:53AM +0100, Leah Rowe wrote: > > Hi Otto, > > > Your fixes are not ok. See comment inline. > > The other person (Theo) who responded, raised the same concerns as you. > Sorry for wasting your time. I've reverted the patches myself, locally, > knowing now that I mad

Re: em(4) multiqueue

2022-07-02 Thread David Gwynne
> On 2 Jul 2022, at 08:44, Hrvoje Popovski wrote: > > On 28.6.2022. 15:11, Jonathan Matthew wrote: >> This adds the (not quite) final bits to em(4) to enable multiple rx/tx >> queues. >> Note that desktop/laptop models (I218, I219 etc.) do not support multiple >> queues, >> so this only real

make timeout(1) -s behave like kill(1) -s and GNU timeout(1) -s

2022-07-02 Thread Klemens Nanni
timeout.c's parse_signal() basically does what kill.c's signame_to_num() does, except it expects "SIG" in string signals. Borrow the isalpha() check from kill.c to get the same behaviour: $ time ./obj/timeout -s kill 1 sleep 3 Killed 0m01.01s real 0m00.00s user