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
00028 class KSSLConnectionInfo {
00029 friend class KSSL;
00030 public:
00031 ~KSSLConnectionInfo();
00032
00033 const QString& getCipher() const;
00034 const QString& getCipherDescription() const;
00035 const QString& getCipherVersion() const;
00036 int getCipherUsedBits() const;
00037 int getCipherBits() const;
00038
00039 private:
00040
00041 protected:
00042 KSSLConnectionInfo();
00043 void clean();
00044
00045
00046
00047 int m_iCipherUsedBits, m_iCipherBits;
00048 QString m_cipherName;
00049 QString m_cipherDescription;
00050 QString m_cipherVersion;
00051
00052 private:
00053 class KSSLConnectionInfoPrivate;
00054 KSSLConnectionInfoPrivate *d;
00055 };
00056
00057 #endif
00058
This file is part of the documentation for kdelibs Version 3.1.5.