diff options
author | Rob Mensching <rob@firegiant.com> | 2021-04-12 07:46:35 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-04-12 15:34:06 -0700 |
commit | fc542c0974840882e5bbba0046c530e2ede34170 (patch) | |
tree | 4794ea6c80550b7e7f5057c248e784df92b83a6b /src/ca/precomp.h | |
parent | a20bee47c43861dd9f38adb88e74a6417292732b (diff) | |
download | wix-fc542c0974840882e5bbba0046c530e2ede34170.tar.gz wix-fc542c0974840882e5bbba0046c530e2ede34170.tar.bz2 wix-fc542c0974840882e5bbba0046c530e2ede34170.zip |
Add support for configuring SNI SSL certificates
Diffstat (limited to 'src/ca/precomp.h')
-rw-r--r-- | src/ca/precomp.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ca/precomp.h b/src/ca/precomp.h index d5143dac..c78d78c1 100644 --- a/src/ca/precomp.h +++ b/src/ca/precomp.h | |||
@@ -16,3 +16,10 @@ | |||
16 | #include "cost.h" | 16 | #include "cost.h" |
17 | 17 | ||
18 | #include "caDecor.h" | 18 | #include "caDecor.h" |
19 | |||
20 | enum eHandleExisting | ||
21 | { | ||
22 | heReplace = 0, | ||
23 | heIgnore = 1, | ||
24 | heFail = 2 | ||
25 | }; | ||