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/wixext/Symbols/HttpSymbolDefinitions.cs | |
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/wixext/Symbols/HttpSymbolDefinitions.cs')
-rw-r--r-- | src/ext/Http/wixext/Symbols/HttpSymbolDefinitions.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ext/Http/wixext/Symbols/HttpSymbolDefinitions.cs b/src/ext/Http/wixext/Symbols/HttpSymbolDefinitions.cs index ff46ce3b..37a7abf0 100644 --- a/src/ext/Http/wixext/Symbols/HttpSymbolDefinitions.cs +++ b/src/ext/Http/wixext/Symbols/HttpSymbolDefinitions.cs | |||
@@ -7,7 +7,7 @@ namespace WixToolset.Http | |||
7 | 7 | ||
8 | public enum HttpSymbolDefinitionType | 8 | public enum HttpSymbolDefinitionType |
9 | { | 9 | { |
10 | WixHttpSniSslCert, | 10 | HttpCertificate, |
11 | WixHttpUrlAce, | 11 | WixHttpUrlAce, |
12 | WixHttpUrlReservation, | 12 | WixHttpUrlReservation, |
13 | } | 13 | } |
@@ -28,8 +28,8 @@ namespace WixToolset.Http | |||
28 | { | 28 | { |
29 | switch (type) | 29 | switch (type) |
30 | { | 30 | { |
31 | case HttpSymbolDefinitionType.WixHttpSniSslCert: | 31 | case HttpSymbolDefinitionType.HttpCertificate: |
32 | return HttpSymbolDefinitions.WixHttpSniSslCert; | 32 | return HttpSymbolDefinitions.HttpCertificate; |
33 | 33 | ||
34 | case HttpSymbolDefinitionType.WixHttpUrlAce: | 34 | case HttpSymbolDefinitionType.WixHttpUrlAce: |
35 | return HttpSymbolDefinitions.WixHttpUrlAce; | 35 | return HttpSymbolDefinitions.WixHttpUrlAce; |