diff options
author | Bob Arnson <bob@firegiant.com> | 2025-02-17 22:30:31 -0500 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2025-02-25 17:17:56 -0500 |
commit | 085ba380e7991013c6bb6dce48dc89f02eca4808 (patch) | |
tree | 7b27ad1e329277c204dee8c5c72451d475727630 /src/ext/Http/ca/precomp.h | |
parent | 1be4e0930eb296f44b8cecd10fc9632a867149ce (diff) | |
download | wix-bob/HttpNonSniSslCerts.tar.gz wix-bob/HttpNonSniSslCerts.tar.bz2 wix-bob/HttpNonSniSslCerts.zip |
Support non-SNI SSL certificates in Http extensionbob/HttpNonSniSslCerts
Implements https://github.com/wixtoolset/issues/issues/7622
Diffstat (limited to 'src/ext/Http/ca/precomp.h')
-rw-r--r-- | src/ext/Http/ca/precomp.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ext/Http/ca/precomp.h b/src/ext/Http/ca/precomp.h index 42287cb2..bbd79ccf 100644 --- a/src/ext/Http/ca/precomp.h +++ b/src/ext/Http/ca/precomp.h | |||
@@ -23,3 +23,9 @@ enum eHandleExisting | |||
23 | heIgnore = 1, | 23 | heIgnore = 1, |
24 | heFail = 2 | 24 | heFail = 2 |
25 | }; | 25 | }; |
26 | |||
27 | enum eCertificateType | ||
28 | { | ||
29 | ctSniSsl = 0, | ||
30 | ctIpSsl = 1, | ||
31 | }; | ||