(ssl + windows) missing include for CertOpenStore function

This commit is contained in:
Benjamin Sergeant
2021-03-24 08:03:56 -07:00
parent 0d7fb05567
commit 3add6d4c2e
4 changed files with 15 additions and 1 deletions

View File

@ -16,6 +16,11 @@
#include "IXSocketConnect.h"
#include <string.h>
#ifdef _WIN32
// For manipulating the certificate store
#include <wincrypt.h>
#endif
namespace ix
{
SocketMbedTLS::SocketMbedTLS(const SocketTLSOptions& tlsOptions, int fd)