Skip to content

Commit

Permalink
core: main - tls_threads_mode set to 2 by default
Browse files Browse the repository at this point in the history
- recommended value (KSR_TLS_THREADS_MFORK) for production with latest libssl
  • Loading branch information
miconda committed Nov 22, 2024
1 parent 1189f48 commit 9ec3770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ int tls_disable = 0; /* tls enabled by default */
int tls_disable = 1; /* tls disabled by default */
#endif /* CORE_TLS */
/* threads execution mode for tls with libssl */
int ksr_tls_threads_mode = KSR_TLS_THREADS_MNONE;
int ksr_tls_threads_mode = KSR_TLS_THREADS_MFORK;
#endif /* USE_TLS */
#ifdef USE_SCTP
int sctp_children_no = 0;
Expand Down

0 comments on commit 9ec3770

Please sign in to comment.