From 96cd68b34037f8b6d9a1d43f67b8fe7c1df2ef9e Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 20 Sep 2018 15:05:37 +0300 Subject: Added SSL/TLS support on connection level. --- src/nxt_runtime.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/nxt_runtime.h') diff --git a/src/nxt_runtime.h b/src/nxt_runtime.h index 124a64fd..2e121f88 100644 --- a/src/nxt_runtime.h +++ b/src/nxt_runtime.h @@ -28,6 +28,10 @@ struct nxt_runtime_s { nxt_file_name_t *pid_file; +#if (NXT_TLS) + const nxt_tls_lib_t *tls; +#endif + nxt_array_t *thread_pools; /* of nxt_thread_pool_t */ nxt_runtime_cont_t continuation; -- cgit