Re: [Openvpn-devel] [PATCH 01/17] Refactor/Reformat tls_pre_decrypt

2020-08-11 Thread Gert Doering
Hi, On Mon, Aug 10, 2020 at 04:36:51PM +0200, Arne Schwabe wrote: > - Extract data packet handling to its own function > - Replace two instances of > if (x) { code } > with > if (!x) return; code > > - Remove extra curly braces that were used for pre C99 code style > to

Re: [Openvpn-devel] [PATCH 01/17] Refactor/Reformat tls_pre_decrypt

2020-08-11 Thread Vladislav Grishenko
Tested-By: Vladislav Grishenko Read-checked with --ignore-space-change, build & tested with sample server/client profile. -- Best Regards, Vladislav Grishenko ___ Openvpn-devel mailing list Openvpn-devel@lists.sourceforge.net

[Openvpn-devel] [PATCH 01/17] Refactor/Reformat tls_pre_decrypt

2020-08-10 Thread Arne Schwabe
- Extract data packet handling to its own function - Replace two instances of if (x) { code } with if (!x) return; code - Remove extra curly braces that were used for pre C99 code style to be able to declare variables in the middle of a block This patch is easier to