aboutsummaryrefslogtreecommitdiffstats
path: root/examples/websockets/sslechoclient/main.cpp
blob: d70f1a52f1b04551a7d6c51b95a3530c780216b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (C) 2016 Kurt Pattyn <pattyn.kurt@gmail.com>.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QtCore/QCoreApplication>
#include "sslechoclient.h"

int main(int argc, char *argv[])
{
    QCoreApplication a(argc, argv);
    SslEchoClient client(QUrl(QStringLiteral("wss://localhost:1234")));

    Q_UNUSED(client);

    return a.exec();
}