// Copyright (C) 2016 Kurt Pattyn . // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #include "sslechoclient.h" #include #include #include QT_USE_NAMESPACE //! [constructor] SslEchoClient::SslEchoClient(const QUrl &url, QObject *parent) : QObject(parent) { connect(&m_webSocket, &QWebSocket::connected, this, &SslEchoClient::onConnected); connect(&m_webSocket, QOverload&>::of(&QWebSocket::sslErrors), this, &SslEchoClient::onSslErrors); m_webSocket.open(QUrl(url)); } //! [constructor] //! [onConnected] void SslEchoClient::onConnected() { qDebug() << "WebSocket connected"; connect(&m_webSocket, &QWebSocket::textMessageReceived, this, &SslEchoClient::onTextMessageReceived); m_webSocket.sendTextMessage(QStringLiteral("Hello, world!")); } //! [onConnected] //! [onTextMessageReceived] void SslEchoClient::onTextMessageReceived(QString message) { qDebug() << "Message received:" << message; qApp->quit(); } void SslEchoClient::onSslErrors(const QList &errors) { Q_UNUSED(errors); // WARNING: Never ignore SSL errors in production code. // The proper way to handle self-signed certificates is to add a custom root // to the CA store. m_webSocket.ignoreSslErrors(); } //! [onTextMessageReceived]