diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-03-28 20:53:42 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-03-28 20:53:42 +0000 |
commit | 0a58e76f0fde2dcddd5505951fe5f1201d36ced7 (patch) | |
tree | 1929d74d1a70670fe74e863de4dacad5c37aa7a4 /cpp/src/IceSSL/DHParams.cpp | |
parent | minor fix (diff) | |
download | ice-0a58e76f0fde2dcddd5505951fe5f1201d36ced7.tar.bz2 ice-0a58e76f0fde2dcddd5505951fe5f1201d36ced7.tar.xz ice-0a58e76f0fde2dcddd5505951fe5f1201d36ced7.zip |
new IceSSL plugin
Diffstat (limited to 'cpp/src/IceSSL/DHParams.cpp')
-rw-r--r-- | cpp/src/IceSSL/DHParams.cpp | 34 |
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; -} - |