diff options
author | Eduardo Chappa <chappa@washington.edu> | 2019-02-17 19:17:46 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2019-02-17 19:17:46 -0700 |
commit | 08fcd1b86979b422eb586e56459d6fe15333e500 (patch) | |
tree | 27247d07d9c1063e2a2fc376155d675f54a4d4e4 /include | |
parent | 35f3426203172af028df5a6e39bc6dea2514020d (diff) | |
download | alpine-08fcd1b86979b422eb586e56459d6fe15333e500.tar.xz |
* Rewrite support for specific SSL encryption protocols, including
a. Add a new variable: encryption-protocol-range, which can be
used to specify the minimum and maximum versions of the TLS
protocol that Alpine will attempt to use to encrypt its
communication with the server.
b. Add support for the Server Name Identification (SNI) extension
needed for TLSv1.3.
c. Remove the DTLS code. It was not being used.
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h.in | 3 | ||||
-rw-r--r-- | include/config.wnt.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/config.h.in b/include/config.h.in index 0779f336..453a2c12 100644 --- a/include/config.h.in +++ b/include/config.h.in @@ -64,6 +64,9 @@ #undef DF_ELM_STYLE_SAVE /* Default configuration value */ +#undef DF_ENCRYPTION_RANGE + +/* Default configuration value */ #undef DF_FCC_RULE /* Default configuration value */ diff --git a/include/config.wnt.h b/include/config.wnt.h index ca2f58f3..6e22f38e 100644 --- a/include/config.wnt.h +++ b/include/config.wnt.h @@ -57,6 +57,9 @@ #define DF_ELM_STYLE_SAVE "no" /* Default configuration value */ +#define DF_ENCRYPTION_RANGE "no_min,no_max" + +/* Default configuration value */ #define DF_FCC_RULE "default-fcc" /* Default configuration value */ |