Re: [Openvpn-devel] [PATCH 1/2] Improve signal handling using POSIX sigaction

2023-06-26 Thread Selva Nair
On Mon, May 29, 2023 at 3:07 PM Gert Doering wrote: > Hi, > > On Thu, May 25, 2023 at 02:41:10PM -0400, Selva Nair wrote: > > Now that 2.6 appears to have reached a fairly stable state, may I request > > you to look into this patch for 2.7 -- this one has an ACK (thanks to > > Frank), 2/2 may

Re: [Openvpn-devel] [PATCH 1/2] Improve signal handling using POSIX sigaction

2023-05-29 Thread Gert Doering
Hi, On Thu, May 25, 2023 at 02:41:10PM -0400, Selva Nair wrote: > Now that 2.6 appears to have reached a fairly stable state, may I request > you to look into this patch for 2.7 -- this one has an ACK (thanks to > Frank), 2/2 may need a closer look but that one is small. > > I dread the prospect

Re: [Openvpn-devel] [PATCH 1/2] Improve signal handling using POSIX sigaction

2023-05-25 Thread Selva Nair
Hi Gert, Now that 2.6 appears to have reached a fairly stable state, may I request you to look into this patch for 2.7 -- this one has an ACK (thanks to Frank), 2/2 may need a closer look but that one is small. I dread the prospect of this developing serious merge conflicts and having to drill

Re: [Openvpn-devel] [PATCH 1/2] Improve signal handling using POSIX sigaction

2023-01-31 Thread Frank Lichtenheld
On Sat, Jan 28, 2023 at 04:59:00PM -0500, selva.n...@gmail.com wrote: > From: Selva Nair > > Currently we use the old signal API which follows system-V or > BSD semantics depending on the platform and/or feature-set macros. > Further, signal has many weaknesses which makes proper masking >

[Openvpn-devel] [PATCH 1/2] Improve signal handling using POSIX sigaction

2023-01-28 Thread selva . nair
From: Selva Nair Currently we use the old signal API which follows system-V or BSD semantics depending on the platform and/or feature-set macros. Further, signal has many weaknesses which makes proper masking (deferring) of signals during update not possible. Improve this: - Use sigaction to