summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/SslConnection.cpp
blob: ec1c924152aa8fbead7011ccdf055fb4f114b1ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// **********************************************************************
//
// Copyright (c) 2001
// MutableRealms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************

#include <IceSSL/SslConnection.h>

void ::IceInternal::incRef(::IceSSL::Connection* p) { p->__incRef(); }
void ::IceInternal::decRef(::IceSSL::Connection* p) { p->__decRef(); }

IceSSL::Connection::Connection(const TraceLevelsPtr& traceLevels,
                               const Ice::LoggerPtr& logger,
                               const CertificateVerifierPtr& certificateVerifier) :
    _traceLevels(traceLevels),
    _logger(logger),
    _certificateVerifier(certificateVerifier)
{
}

IceSSL::Connection::~Connection()
{
}