//
// SSLConnection.cc
//
// SSLConnection: This class forms a easy to use interface to the
// socket interface using SSL connection encryption.
//
// Part of the ht://Dig package
// Copyright (c) 1999-2004 The ht://Dig Group
// For copyright details, see the file COPYING in your distribution
// or the GNU Library General Public License (LGPL) version 2 or later
//
//
// $Id: SSLConnection.h,v 1.5 2004/05/28 13:15:23 lha Exp $
//
#ifndef _SSLConnection_h_
#define _SSLConnection_h_
#include "Connection.h"
#ifdef HAVE_SSL_H
#include
#include
#include
#include
#include
class SSLConnection : public Connection
{
public:
SSLConnection();
SSLConnection(int socket);
~SSLConnection();
protected:
static SSL_CTX *ctx;
SSL *ssl;
void InitSSL();
int Connect();
int Close();
int Read_Partial( char *buffer, int maxlength );
int Write_Partial( char *buffer, int maxlength );
};
#endif
#endif