summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/OpenSSL.h
diff options
context:
space:
mode:
authorAnthony Neal <aneal@zeroc.com>2002-02-18 19:59:08 +0000
committerAnthony Neal <aneal@zeroc.com>2002-02-18 19:59:08 +0000
commit05d06bf28399d88cf387da0cf5db7b4861495767 (patch)
tree1cc9d3629f4b8b8a58db33816c5be5f05cedb736 /cpp/src/Ice/OpenSSL.h
parentUpdate. (diff)
downloadice-05d06bf28399d88cf387da0cf5db7b4861495767.tar.bz2
ice-05d06bf28399d88cf387da0cf5db7b4861495767.tar.xz
ice-05d06bf28399d88cf387da0cf5db7b4861495767.zip
Another update, primarily for slicifying SslCertificateVerifier and the
macro cleanup.
Diffstat (limited to 'cpp/src/Ice/OpenSSL.h')
-rw-r--r--cpp/src/Ice/OpenSSL.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/cpp/src/Ice/OpenSSL.h b/cpp/src/Ice/OpenSSL.h
new file mode 100644
index 00000000000..9481f15a98e
--- /dev/null
+++ b/cpp/src/Ice/OpenSSL.h
@@ -0,0 +1,29 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+#ifndef ICE_OPENSSL_H
+#define ICE_OPENSSL_H
+
+#include <openssl/ssl.h>
+
+namespace IceSecurity
+{
+
+typedef enum
+{
+ NO_SECURITY_TRACE = 0,
+ SECURITY_WARNINGS,
+ SECURITY_PARSE_WARNINGS,
+ SECURITY_PROTOCOL,
+ SECURITY_PROTOCOL_DEBUG
+} SecurityTraceLevel;
+
+}
+
+#endif