summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/UtilF.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/UtilF.h')
-rw-r--r--cpp/src/IceSSL/UtilF.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/UtilF.h b/cpp/src/IceSSL/UtilF.h
new file mode 100644
index 00000000000..65f3dff703c
--- /dev/null
+++ b/cpp/src/IceSSL/UtilF.h
@@ -0,0 +1,29 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+#ifndef ICE_SSL_UTIL_F_H
+#define ICE_SSL_UTIL_F_H
+
+#include <Ice/Handle.h>
+
+#include <openssl/ssl.h>
+
+#ifndef OPENSSL_NO_DH
+namespace IceSSL
+{
+
+class DHParams;
+void incRef(DHParams*);
+void decRef(DHParams*);
+typedef IceInternal::Handle<DHParams> DHParamsPtr;
+
+}
+#endif
+
+#endif