kio
ksslpeerinfo.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef _KSSLPEERINFO_H
00022 #define _KSSLPEERINFO_H
00023
00024 class KSSL;
00025
00026 #include <qglobal.h>
00027 #include <qstringlist.h>
00028 #include <ksslcertificate.h>
00029
00030 class KSSLPeerInfoPrivate;
00031 class KInetSocketAddress;
00032
00042 class KIO_EXPORT KSSLPeerInfo {
00043 friend class KSSL;
00044 public:
00048 ~KSSLPeerInfo();
00049
00056 KSSLCertificate& getPeerCertificate();
00057
00066 bool certMatchesAddress();
00067
00076 bool cnMatchesAddress(QString cn);
00077
00085 void setPeerHost(QString host = QString::null);
00086
00090 const QString& peerHost() const;
00091
00095 void reset();
00096
00097 protected:
00098 KSSLPeerInfo();
00099
00100 KSSLCertificate m_cert;
00101
00102 private:
00103 KSSLPeerInfoPrivate *d;
00104 };
00105
00106
00107 #endif
00108