Module: kamailio Branch: master Commit: ac4d7ce7bf153604e0e07d1003a1d078882c90f4 URL: https://github.com/kamailio/kamailio/commit/ac4d7ce7bf153604e0e07d1003a1d078...
Author: S-P Chan shihping.chan@gmail.com Committer: S-P Chan shihping.chan@gmail.com Date: 2022-08-19T22:20:52+08:00
tls_wolfssl: add parser logic for previous commits related to TLSv1.3
---
Modified: src/modules/tls_wolfssl/tls_config.c
---
Diff: https://github.com/kamailio/kamailio/commit/ac4d7ce7bf153604e0e07d1003a1d078... Patch: https://github.com/kamailio/kamailio/commit/ac4d7ce7bf153604e0e07d1003a1d078...
---
diff --git a/src/modules/tls_wolfssl/tls_config.c b/src/modules/tls_wolfssl/tls_config.c index 16694616f1..282b4a26bb 100644 --- a/src/modules/tls_wolfssl/tls_config.c +++ b/src/modules/tls_wolfssl/tls_config.c @@ -125,6 +125,8 @@ static cfg_option_t methods[] = { {"TLSv1.1+", .val = TLS_USE_TLSv1_1_PLUS}, {"TLSv1.2", .val = TLS_USE_TLSv1_2}, {"TLSv1.2+", .val = TLS_USE_TLSv1_2_PLUS}, + {"TLSv1.3", .val = TLS_USE_TLSv1_3}, + {"TLSv1.3+", .val = TLS_USE_TLSv1_3_PLUS}, {0} };