Repository: trafficserver Updated Branches: refs/heads/master b4ae36f3b -> 73b0b4f0d
TS-3045 Change the default TLS threads setting to -1 Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/73b0b4f0 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/73b0b4f0 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/73b0b4f0 Branch: refs/heads/master Commit: 73b0b4f0d613652113fb10c6efff3e166b6d0027 Parents: b4ae36f Author: Leif Hedstrom <[email protected]> Authored: Tue Jun 9 11:24:36 2015 -0600 Committer: Leif Hedstrom <[email protected]> Committed: Tue Jun 9 11:24:36 2015 -0600 ---------------------------------------------------------------------- CHANGES | 2 ++ mgmt/RecordsConfig.cc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/73b0b4f0/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 38a6c5b..910fad1 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,8 @@ -*- coding: utf-8 -*- Changes with Apache Traffic Server 6.0.0 + *) [TS-3045] Change the default TLS threads setting to -1. + *) [TS-2244] Remove legacy proxy.config.log.search_log_enabled and related features / config. http://git-wip-us.apache.org/repos/asf/trafficserver/blob/73b0b4f0/mgmt/RecordsConfig.cc ---------------------------------------------------------------------- diff --git a/mgmt/RecordsConfig.cc b/mgmt/RecordsConfig.cc index b7bb24c..5aa03b6 100644 --- a/mgmt/RecordsConfig.cc +++ b/mgmt/RecordsConfig.cc @@ -1262,7 +1262,7 @@ static const RecordElement RecordsConfig[] = {RECT_CONFIG, "proxy.config.ssl.compression", RECD_INT, "0", RECU_RESTART_TS, RR_NULL, RECC_INT, "[0-1]", RECA_NULL} , - {RECT_CONFIG, "proxy.config.ssl.number.threads", RECD_INT, "0", RECU_RESTART_TS, RR_NULL, RECC_NULL, NULL, RECA_NULL} + {RECT_CONFIG, "proxy.config.ssl.number.threads", RECD_INT, "-1", RECU_RESTART_TS, RR_NULL, RECC_NULL, NULL, RECA_NULL} , {RECT_CONFIG, "proxy.config.ssl.server.cipher_suite", RECD_STRING, "ECDHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA384:AES128-GCM-SHA256:AES256-GCM-SHA384:ECDHE-RSA-RC4-SHA:ECDHE-RSA-AES128-SHA:ECDHE-RSA-AES256-SHA:RC4-SHA:RC4-MD5:AES128-SHA:AES256-SHA:DES-CBC3-SHA!SRP:!DSS:!PSK:!aNULL:!eNULL:!SSLv2", RECU_RESTART_TS, RR_NULL, RECC_NULL, NULL, RECA_NULL} ,
