]> WPIA git - cassiopeia.git/blobdiff - src/crypto/sslUtil.h
add: handle the 'noOCSP' feature in the include section
[cassiopeia.git] / src / crypto / sslUtil.h
index 2ecba42b9874686014d7c72ac77919de321a1b63..f0eaaf6e6e3d0ccf7584bf227a391b2f75f06b28 100644 (file)
@@ -6,6 +6,7 @@
 #include <vector>
 #include <cinttypes>
 #include <ctime>
+#include <unordered_set>
 
 #include <openssl/ssl.h>
 
@@ -34,6 +35,7 @@ struct Profile {
 
     std::vector<std::shared_ptr<CAConfig>> ca;
     std::time_t maxValidity;
+    std::unordered_set<std::string> include;
     std::shared_ptr<CAConfig> getCA() {
         std::shared_ptr<CAConfig> min = nullptr;