ksslconnectioninfo.cc
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #include "ksslconnectioninfo.h"
00022
00023
00024 KSSLConnectionInfo::KSSLConnectionInfo() {
00025 clean();
00026 }
00027
00028
00029 KSSLConnectionInfo::~KSSLConnectionInfo() {
00030
00031 }
00032
00033
00034 void KSSLConnectionInfo::clean() {
00035 m_iCipherUsedBits = 0;
00036 m_iCipherBits = 0;
00037 m_cipherName = "";
00038 }
00039
00040
00041 const QString& KSSLConnectionInfo::getCipherVersion() const {
00042 return m_cipherVersion;
00043 }
00044
00045
00046 const QString& KSSLConnectionInfo::getCipherDescription() const {
00047 return m_cipherDescription;
00048 }
00049
00050
00051 const QString& KSSLConnectionInfo::getCipher() const {
00052 return m_cipherName;
00053 }
00054
00055
00056 int KSSLConnectionInfo::getCipherUsedBits() const {
00057 return m_iCipherUsedBits;
00058 }
00059
00060
00061 int KSSLConnectionInfo::getCipherBits() const {
00062 return m_iCipherBits;
00063 }
00064
00065
00066
This file is part of the documentation for kdelibs Version 3.1.4.