You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
konversation/konversation/src/sslsocket.h

62 lines
1.8 KiB

#ifndef SSL_SOCKET_H
#define SSL_SOCKET_H
/*
KDE SSL Socket
Copyright (c) 2004,2005 by İsmail Dönmez <ismail.donmez@boun.edu.tr>
based on the code by:
Copyright (c) 2004 by Jason Keirstead <jason@keirstead.org>
Kopete (c) 2002-2003 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
*************************************************************************
*/
#include <kstreamsocket.h>
using namespace KNetwork;
struct SSLSocketPrivate;
class SSLSocket : public KStreamSocket
{
Q_OBJECT
public:
explicit SSLSocket(TQWidget* serverParent, TQObject* parent = 0L, const char* name = 0L);
~SSLSocket();
void showInfoDialog();
const TQString details();
TQ_LONG writeBlock (const char *data, TQ_ULONG len);
TQ_LONG readBlock (char *data, TQ_ULONG maxlen);
protected:
void stateChanging (KClientSocketBase::SocketState newState);
signals:
/** Emitted when there is a problem with SSL
* @param reason An error string that has already been through i18n
*/
void sslFailure(const TQString& reason);
void sslInitDone();
private:
void connected();
int verifyCertificate();
void showSSLInfoDialog();
TQWidget* m_serverParent;
SSLSocketPrivate* d;
};
#endif