[m...@umaxx.net: Re: [patch] add a timeout to filter registration]

2020-05-04 Thread Edgar Pettijohn
- Forwarded message from Joerg Jung - Date: Mon, 4 May 2020 13:39:09 +0200 From: Joerg Jung To: Edgar Pettijohn Cc: m...@opensmtpd.org Subject: Re: [patch] add a timeout to filter registration X-Mailer: Apple Mail (2.3608.60.0.2.5) > On 2. May 2020, at 17:41, Edgar Pettijohn wrote: >

[PATCH] pipex(4): rework PPP input

2020-05-04 Thread Sergey Ryazanov
Split checks from frame accepting with header removing in the common PPP input function. This should fix packet capture on a PPP interfaces. Also forbid IP/IPv6 frames (without PPP header) passing to BPF on PPP interfaces to avoid mess. Initialy this change was made as a part of pipex(4) and ppp(

[PATCH] ppp(4): use common bpf filter hook

2020-05-04 Thread Sergey Ryazanov
Use bpf filter hook from the common interface structure. This simplifies the code by unifying it and prepare ppp(4) for pipex(4) support. Ok? --- sys/net/if_ppp.c| 16 sys/net/if_pppvar.h | 1 - 2 files changed, 8 insertions(+), 9 deletions(-) diff --git sys/net/if_ppp.c s

[PATCH] tcpdump: add ppp address/protocol compression support

2020-05-04 Thread Sergey Ryazanov
Add support for parsing ppp frames with compressed address and(or) protocol fields. Since we have no apriory information than try to guess such frames by inability to parse a frame in a regular way. ok? --- usr.sbin/tcpdump/print-ppp.c | 29 + 1 file changed, 17 inser

iwn: fix connection hangs with some APs

2020-05-04 Thread Stefan Sperling
For some reason, changes I made to iwn(4) in the commit quoted below have caused connections to get stuck on some APs during Tx bursts. This does not occur with every type of AP. It was observed on an Apple Airport Extreme 6th gen, and on a b-box 3V+ (Sagemcom Mac address). The patch below revert

Diff for www:mail

2020-05-04 Thread bsd
Hi, Here a diff for www page: mail Please, review this diff to add French ML Right? Index: mail.html === RCS file: /cvs/www/mail.html,v retrieving revision 1.170 diff -u -r1.170 mail.html --- mail.html 24 Apr 2020 21:51:21

smtpd stricter forkmda()

2020-05-04 Thread Gilles Chehade
hello, forkmda() is never supposed to be called with an action dispatcher which is not local, this would indicate that the code path was abused somehow. idea suggested by Demi M. Obenour diff --git a/smtpd/smtpd.c b/smtpd/smtpd.c index ce1262fa..4c5fc3d9 100644 --- a/smtpd/smtpd.c +++ b/smtpd/s

Re: smtpd stricter forkmda()

2020-05-04 Thread Joerg Jung
> On 4. May 2020, at 11:17, Gilles Chehade wrote: > > forkmda() is never supposed to be called with an action dispatcher which > is not local, this would indicate that the code path was abused somehow. > > idea suggested by Demi M. Obenour ok jung@ (for post-lock) > diff --git a/smtpd/smtpd