diff options
author | Igor Sysoev <igor@sysoev.ru> | 2018-09-20 15:05:37 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2018-09-20 15:05:37 +0300 |
commit | 96cd68b34037f8b6d9a1d43f67b8fe7c1df2ef9e (patch) | |
tree | 8e648712993012fbe815cc92e6debab20449fe8f /src/nxt_runtime.h | |
parent | e964e982fd64505fb8644f91e5c57a869038cd18 (diff) | |
download | unit-96cd68b34037f8b6d9a1d43f67b8fe7c1df2ef9e.tar.gz unit-96cd68b34037f8b6d9a1d43f67b8fe7c1df2ef9e.tar.bz2 |
Added SSL/TLS support on connection level.
Diffstat (limited to 'src/nxt_runtime.h')
-rw-r--r-- | src/nxt_runtime.h | 4 |
1 files changed, 4 insertions, 0 deletions
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; |