summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_SSL.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_SSL.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_SSL.h85
1 files changed, 0 insertions, 85 deletions
diff --git a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_SSL.h b/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_SSL.h
deleted file mode 100644
index b9b01e4a85d..00000000000
--- a/TAO/orbsvcs/orbsvcs/SSLIOP/SSLIOP_SSL.h
+++ /dev/null
@@ -1,85 +0,0 @@
-// -*- C++ -*-
-
-//=============================================================================
-/**
- * @file SSLIOP_SSL.h
- *
- * OpenSSL @c SSL data structure specializations and typedefs.
- *
- * $Id$
- *
- * @author Ossama Othman <ossama@dre.vanderbilt.edu>
- */
-//=============================================================================
-
-#ifndef TAO_SSLIOP_SSL_H
-#define TAO_SSLIOP_SSL_H
-
-#include /**/ "ace/pre.h"
-
-#include "ace/config-all.h"
-
-#if !defined (ACE_LACKS_PRAGMA_ONCE)
-#pragma once
-#endif /* ACE_LACKS_PRAGMA_ONCE */
-
-#include "orbsvcs/SSLIOP/SSLIOP_OpenSSL_st_T.h"
-
-#include <openssl/ssl.h>
-#include <openssl/crypto.h>
-
-
-TAO_BEGIN_VERSIONED_NAMESPACE_DECL
-
-namespace TAO
-{
- namespace SSLIOP
- {
- // OpenSSL @c SSL structure traits specialization.
- template <>
- struct OpenSSL_traits< ::SSL >
- {
- /// OpenSSL lock ID for use in OpenSSL CRYPTO_add() reference
- /// count manipulation function.
- enum { LOCK_ID = CRYPTO_LOCK_SSL };
-
- /// Increase the reference count on the given OpenSSL structure.
- /**
- * @note This used to be in a function template but MSVC++ 6
- * can't handle function templates correctly so reproduce
- * the code in each specialization. *sigh*
- */
- static ::SSL * _duplicate (::SSL * st)
- {
- if (st != 0)
- CRYPTO_add (&(st->references),
- 1,
- LOCK_ID);
-
- return st;
- }
-
- /// Perform deep copy of the given OpenSSL structure.
- static ::SSL * copy (::SSL const & st)
- {
- return ::SSL_dup (const_cast< ::SSL * > (&st));
- }
-
- /// Decrease the reference count on the given OpenSSL
- /// structure.
- static void release (::SSL * st)
- {
- ::SSL_free (st);
- }
- };
-
- typedef OpenSSL_st_var< ::SSL > SSL_var;
-
- } // End SSLIOP namespace.
-} // End TAO namespace.
-
-TAO_END_VERSIONED_NAMESPACE_DECL
-
-#include /**/ "ace/post.h"
-
-#endif /* TAO_SSLIOP_SSL_H */