aboutsummaryrefslogtreecommitdiffstats
path: root/examples/sslechoserver
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2014-01-19 13:58:30 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-20 22:40:19 +0100
commit281647a7efcc122c87d65518d9d8fbf259a3803a (patch)
treed3b556a2faecea0309a3352a90e310522da306ef /examples/sslechoserver
parentf8b27c6b833ee796193ae115cb87574cb0e4df4c (diff)
Rename SecureMode to SslMode
Renamed SecureMode to SslMode to be more inline with QSslSocket. Change-Id: Id2f0c5ebc1e06fcd7b0ce5059e88520e5f0e6fe5 Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Diffstat (limited to 'examples/sslechoserver')
-rw-r--r--examples/sslechoserver/sslechoserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sslechoserver/sslechoserver.cpp b/examples/sslechoserver/sslechoserver.cpp
index db44af6..b360a08 100644
--- a/examples/sslechoserver/sslechoserver.cpp
+++ b/examples/sslechoserver/sslechoserver.cpp
@@ -55,7 +55,7 @@ SslEchoServer::SslEchoServer(quint16 port, QObject *parent) :
m_clients()
{
m_pWebSocketServer = new QWebSocketServer(QStringLiteral("SSL Echo Server"),
- QWebSocketServer::SecureModeSecure,
+ QWebSocketServer::SecureMode,
this);
QSslConfiguration sslConfiguration;
QFile certFile(QStringLiteral("./localhost.cert"));