Qt 4.8
Functions
qsslcipher.cpp File Reference
#include "qsslcipher.h"
#include "qsslcipher_p.h"
#include "qsslsocket.h"
#include <QtCore/qdebug.h>

Go to the source code of this file.

Functions

QDebug operator<< (QDebug debug, const QSslCipher &cipher)
 

Function Documentation

◆ operator<<()

QDebug operator<< ( QDebug  debug,
const QSslCipher cipher 
)

Definition at line 234 of file qsslcipher.cpp.

235 {
236  debug << "QSslCipher(name=" << qPrintable(cipher.name())
237  << ", bits=" << cipher.usedBits()
238  << ", proto=" << qPrintable(cipher.protocolString())
239  << ')';
240  return debug;
241 }
QString protocolString() const
Returns the cipher&#39;s protocol as a QString.
Definition: qsslcipher.cpp:216
QString name() const
Returns the name of the cipher, or an empty QString if this is a null cipher.
Definition: qsslcipher.cpp:162
int usedBits() const
Returns the number of bits used by the cipher.
Definition: qsslcipher.cpp:182
#define qPrintable(string)
Definition: qglobal.h:1750