Re: TLS Versions

2019-02-07 Thread Kurt Roeckx via devel
On Wed, Feb 06, 2019 at 10:31:39PM -0800, Hal Murray wrote: > > k...@roeckx.be said: > > Please use 0 instead of TLS_MAX_VERSION, it means the same. I've marked > > TLS_MAX_VERSION for deprecation. > > Thanks for the heads up. > > Is there any documentation on that? (man page?) There is

Re: TLS Versions

2019-02-06 Thread Hal Murray via devel
k...@roeckx.be said: > Please use 0 instead of TLS_MAX_VERSION, it means the same. I've marked > TLS_MAX_VERSION for deprecation. Thanks for the heads up. Is there any documentation on that? (man page?) Is there a symbol for default or any version? -- These are my opinions. I hate spam.

Re: TLS Versions

2019-02-06 Thread Kurt Roeckx via devel
On Wed, Feb 06, 2019 at 02:05:27PM -0800, Hal Murray via devel wrote: > > float mintls = 1.2; /* minimum TLS version allowed */ > float maxtls; /* maximum TLS version allowed */ > > Floats? The API to OpenSSL doesn't work in floats. We'll have to translate >

TLS Versions

2019-02-06 Thread Hal Murray via devel
float mintls = 1.2; /* minimum TLS version allowed */ float maxtls; /* maximum TLS version allowed */ Floats? The API to OpenSSL doesn't work in floats. We'll have to translate those to something useful. I'd like to push that back to ntp_config. >From