Re: rpki-client factor out the parser code into own module

2021-02-03 Thread Theo Buehler
On Wed, Feb 03, 2021 at 08:08:20PM +0100, Claudio Jeker wrote: > This is just shuffling code around and adds a few definitions to extern.h. > The goal is to reduce the amount of code in main.c. I constantly get lost > in all the parsing and parent functions also I want to extend the > repository co

Re: uhidpp(4): logitech hid++ device driver

2021-02-03 Thread Ville Valkonen
On Tue, 2021-02-02 at 19:55 +0100, Anton Lindqvist wrote: > On Tue, Feb 02, 2021 at 01:00:48PM +0100, Marcus Glocker wrote: > > On Tue, Feb 02, 2021 at 08:23:29AM +0100, Anton Lindqvist wrote: > > > > > On Sat, Jan 30, 2021 at 01:18:07PM +0200, Ville Valkonen wrote: > > > > On Sat, 2021-01-30 at 0

rpki-client factor out the parser code into own module

2021-02-03 Thread Claudio Jeker
This is just shuffling code around and adds a few definitions to extern.h. The goal is to reduce the amount of code in main.c. I constantly get lost in all the parsing and parent functions also I want to extend the repository code and so this makes space for that. Compiles and works for me :) --

Re: usbhidctl: efault

2021-02-03 Thread Marcus Glocker
On Fri, Jan 29, 2021 at 08:16:27AM +0100, Anton Lindqvist wrote: > Hi, > While running usbhidctl on my USB mouse it occasionally fails as > follows: > > # usbhidctl -f /dev/wsmouse2 > usbhidctl: USB_GET_REPORT (probably not supported by device): Bad > address > > The EFAULT happens

Re: Use correct config descriptor in ugen_set_config

2021-02-03 Thread Marcus Glocker
On Sun, Jan 31, 2021 at 07:05:29PM +0100, Thomas Jeunet wrote: > Hello tech, > > in ugen_set_config, the cached config descriptor (ugen.c:213) is > obsolete after the call to usbd_set_config_no (ugen.c:220). Use a > refreshed value so the next loop account for the correct number of > interfaces.

Re: diff: tcp ack improvement

2021-02-03 Thread Jan Klemkow
On Tue, Jan 05, 2021 at 10:30:33AM +0100, Claudio Jeker wrote: > On Tue, Jan 05, 2021 at 10:16:04AM +0100, Jan Klemkow wrote: > > On Wed, Dec 23, 2020 at 11:59:13AM +, Stuart Henderson wrote: > > > On 2020/12/17 20:50, Jan Klemkow wrote: > > > > ping > > > > > > > > On Fri, Nov 06, 2020 at 01:

Re: diff: tcp ack improvement

2021-02-03 Thread Claudio Jeker
On Wed, Feb 03, 2021 at 10:56:38AM +0100, Jan Klemkow wrote: > On Tue, Jan 05, 2021 at 10:30:33AM +0100, Claudio Jeker wrote: > > On Tue, Jan 05, 2021 at 10:16:04AM +0100, Jan Klemkow wrote: > > > On Wed, Dec 23, 2020 at 11:59:13AM +, Stuart Henderson wrote: > > > > On 2020/12/17 20:50, Jan Kle

Re: sleep_setup/finish simplification

2021-02-03 Thread Claudio Jeker
On Wed, Feb 03, 2021 at 09:43:01AM +0100, Martin Pieuchot wrote: > On 02/02/21(Tue) 10:45, Claudio Jeker wrote: > > On Mon, Feb 01, 2021 at 04:25:47PM +0100, Martin Pieuchot wrote: > > > On 08/12/20(Tue) 10:06, Martin Pieuchot wrote: > > > > Diff below aims to simplify the API to put a thread on a

Re: [External] : pf route-to: only run pf_test when packets enter and leave the stack

2021-02-03 Thread Alexandr Nedvedicky
Hello, > pass in on em0 from v.x.y.z/n to a.b.c.d/m \ > route-to o.p.q.r nat-to (em2) > > > then this needs to be converted to two rules: > > > > match in on em0 from v.x.y.z/n to a.b.c.d/m nat-to(em2) > > pass in on em0 from v.x.y.z/n to a.b.c.d/m route-to o.p.q.r >

Re: sleep_setup/finish simplification

2021-02-03 Thread Martin Pieuchot
On 02/02/21(Tue) 10:45, Claudio Jeker wrote: > On Mon, Feb 01, 2021 at 04:25:47PM +0100, Martin Pieuchot wrote: > > On 08/12/20(Tue) 10:06, Martin Pieuchot wrote: > > > Diff below aims to simplify the API to put a thread on a sleep queue and > > > reduce it to the following: > > > > > > sleep_se