Re: [Openvpn-devel] [PATCH v2 3/4] Implement AUTH_FAIL, TEMP message support

2022-08-24 Thread Arne Schwabe
diff --git a/doc/man-sections/script-options.rst This is more related to 4/4 and should go there for code archaeology reasons. +/* the server can suggest a backoff time to the client, it + * will still be capped by the max timeout between connections + * (300s by default) */ +

Re: [Openvpn-devel] [PATCH v2 3/4] Implement AUTH_FAIL, TEMP message support

2022-08-18 Thread Heiko Hund
On Freitag, 20. Mai 2022 23:32:49 CEST Arne Schwabe wrote: > This allows a server to indicate a temporary problem on the server and > allows the server to indicate how to proceed (i.e. move to the next server, > retry the same server, wait a certain time,...) > > This adds options_utils.c/h to be

Re: [Openvpn-devel] [PATCH v2 3/4] Implement AUTH_FAIL, TEMP message support

2022-06-30 Thread David Sommerseth
On 20/05/2022 23:32, Arne Schwabe wrote: This allows a server to indicate a temporary problem on the server and allows the server to indicate how to proceed (i.e. move to the next server, retry the same server, wait a certain time,...) This adds options_utils.c/h to be able to unit test the new

[Openvpn-devel] [PATCH v2 3/4] Implement AUTH_FAIL, TEMP message support

2022-05-20 Thread Arne Schwabe
This allows a server to indicate a temporary problem on the server and allows the server to indicate how to proceed (i.e. move to the next server, retry the same server, wait a certain time,...) This adds options_utils.c/h to be able to unit test the new function. Patch v2: Improve documentation,