summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/DHParams.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/DHParams.cpp')
-rw-r--r--cpp/src/IceSSL/DHParams.cpp34
1 files changed, 0 insertions, 34 deletions
diff --git a/cpp/src/IceSSL/DHParams.cpp b/cpp/src/IceSSL/DHParams.cpp
deleted file mode 100644
index dd0e2496d76..00000000000
--- a/cpp/src/IceSSL/DHParams.cpp
+++ /dev/null
@@ -1,34 +0,0 @@
-// **********************************************************************
-//
-// 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.
-//
-// **********************************************************************
-
-#include <IceSSL/DHParams.h>
-
-void IceInternal::incRef(::IceSSL::DHParams* p) { p->__incRef(); }
-void IceInternal::decRef(::IceSSL::DHParams* p) { p->__decRef(); }
-
-IceSSL::DHParams::DHParams(DH* dhParams) :
- _dhParams(dhParams)
-{
- assert(_dhParams != 0);
-}
-
-IceSSL::DHParams::~DHParams()
-{
- if(_dhParams != 0)
- {
- DH_free(_dhParams);
- }
-}
-
-DH*
-IceSSL::DHParams::get() const
-{
- return _dhParams;
-}
-