ksslconnectioninfo.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
#ifndef _KSSLCONNECTIONINFO_H
00022
#define _KSSLCONNECTIONINFO_H
00023
00024
#include <qstring.h>
00025
00026
class KSSL;
00027
00038 class KSSLConnectionInfo {
00039
friend class KSSL;
00040
public:
00044
~KSSLConnectionInfo();
00045
00050
const QString&
getCipher()
const;
00051
00056
const QString&
getCipherDescription()
const;
00057
00062
const QString&
getCipherVersion()
const;
00063
00068
int getCipherUsedBits()
const;
00069
00074
int getCipherBits()
const;
00075
00076
protected:
00077
KSSLConnectionInfo();
00078
void clean();
00079
00080
00081
00082
int m_iCipherUsedBits, m_iCipherBits;
00083
QString m_cipherName;
00084
QString m_cipherDescription;
00085
QString m_cipherVersion;
00086
00087
private:
00088
class KSSLConnectionInfoPrivate;
00089 KSSLConnectionInfoPrivate *d;
00090 };
00091
00092
#endif
00093
This file is part of the documentation for kio Library Version 3.3.0.