Re: ospfd: prevent additional ospfd from starting

2018-08-27 Thread Claudio Jeker
On Mon, Aug 27, 2018 at 11:33:19PM +0200, Remi Locherer wrote: > On Fri, Aug 24, 2018 at 12:21:31PM +0200, Remi Locherer wrote: > > On Fri, Aug 24, 2018 at 08:58:12AM +0200, Claudio Jeker wrote: > > > On Wed, Aug 22, 2018 at 12:12:10AM +0200, Remi Locherer wrote: > > > > On Tue, Aug 21, 2018 at

nits in ifconfig.8

2018-08-27 Thread Callum R. Davies
Hi, just a couple of nits in ifconfig.8 that I found whilst struggling to get a route to fe80::1 on a VPS. 'colon-separated' and 'comma-separated' is in keeping with the style of the rest of the page. 'lowest 64th bit' > 'lowest 64 bits' is self-explanatory, I hope. Index: ifconfig.8

openssl s_time: drop SSLv2, SSLv3 APIs and symbols

2018-08-27 Thread Scott Cheloha
If I understand correctly it is now impossible for the openssl(1) tool to open an SSLv2 or SSLv3 session with the host. We can also switch SSLv23_client_method to TLS_client_method to set a good example. ok? Index: s_time.c === RCS

Re: ospfd: prevent additional ospfd from starting

2018-08-27 Thread Remi Locherer
On Fri, Aug 24, 2018 at 12:21:31PM +0200, Remi Locherer wrote: > On Fri, Aug 24, 2018 at 08:58:12AM +0200, Claudio Jeker wrote: > > On Wed, Aug 22, 2018 at 12:12:10AM +0200, Remi Locherer wrote: > > > On Tue, Aug 21, 2018 at 05:54:18PM +0100, Stuart Henderson wrote: > > > > On 2018/08/21 17:16,

Re: ENA support

2018-08-27 Thread Mike Belopuhov
Mike Belopuhov writes: > On Sat, 25 Aug 2018 at 20:03, Zbyszek Żółkiewski > wrote: >> >> Hi, >> >> just a question: anyone tried/consider porting ENA (Elastic Network > Adapter) support to OpenBSD ( > https://github.com/amzn/amzn-drivers/tree/master/kernel/fbsd/ena), how hard > would be to get

Re: ENA support

2018-08-27 Thread Zbyszek Żółkiewski
> Wiadomość napisana przez Mike Belopuhov w dniu > 27.08.2018, o godz. 22:06: > > It would be nice to have a thoughtful port or a partial rewrite of > this vendor code dump. IIRC, dlg@ was toying with the idea. I just realized that (i think) it would require not only driver port but whole

Re: ENA support

2018-08-27 Thread Mike Belopuhov
On Sat, 25 Aug 2018 at 20:03, Zbyszek Żółkiewski wrote: > > Hi, > > just a question: anyone tried/consider porting ENA (Elastic Network Adapter) support to OpenBSD ( https://github.com/amzn/amzn-drivers/tree/master/kernel/fbsd/ena), how hard would be to get it to obsd? > > _ > Zbyszek Żółkiewski

fix ssh build with DEBUG_PK enabled

2018-08-27 Thread Ricardo Mestre
Hi, While looking at a misplaced parenthesis I tried to compile ssh with DEBUG_PK enabled, but it's currently broken. Comments? OK? Index: auth2-hostbased.c === RCS file: /cvs/src/usr.bin/ssh/auth2-hostbased.c,v retrieving revision

Re: bgpd, streamline aspath matching

2018-08-27 Thread Claudio Jeker
On Mon, Aug 27, 2018 at 12:11:43PM +0200, Claudio Jeker wrote: > This is in preparation for introducing as-sets (a fast lookup table for > when you want to make sure that your peering partner is realy only passing > you traffic he should). > > To make as-set possible lets do some cleanup

bgpd, streamline aspath matching

2018-08-27 Thread Claudio Jeker
This is in preparation for introducing as-sets (a fast lookup table for when you want to make sure that your peering partner is realy only passing you traffic he should). To make as-set possible lets do some cleanup beforehands. This mainly removes one element from the filter_as struct, uses

add set time-of-day clock code for OPL based sparc64 machines

2018-08-27 Thread David Gwynne
i have an m4000 that would come up saying that it was 2023, which is hard for ntpd to deal with. the rtc in these machines is based on a value the firmware manages, but we never tell the firmware what we think the time is. this diff moves all the opl firwmare handling into the prtc driver, and

Re: libtool: handle fork() error

2018-08-27 Thread Marc Espie
On Sun, Aug 26, 2018 at 04:13:11PM +0200, Christian Weisgerber wrote: > I noticed this curious error in a package bulk build: > Use of uninitialized value $pid in numeric eq (==) at > /usr/libdata/perl5/LT/Exec.pm line 96. > > Perl's fork() wrapper returns undef rather than -1 on error. > Handle