diff options
author | Bob Arnson <bob@firegiant.com> | 2025-02-17 22:30:31 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2025-03-03 12:52:51 -0500 |
commit | ba7fd5837ea149b2e319cc577fad27ce1162a064 (patch) | |
tree | 5b5940db018333c607147593bb79a547a4836d38 /src/ext/Http/ca/precomp.h | |
parent | b710f6e40239f12d1b7ff670c8580a550f0bb557 (diff) | |
download | wix-ba7fd5837ea149b2e319cc577fad27ce1162a064.tar.gz wix-ba7fd5837ea149b2e319cc577fad27ce1162a064.tar.bz2 wix-ba7fd5837ea149b2e319cc577fad27ce1162a064.zip |
Support non-SNI SSL certificates in Http extension
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 | }; | ||