Update documentation.
[contrib/qtwebsockets.git] / src / websockets / qsslserver.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2014 Kurt Pattyn <pattyn.kurt@gmail.com>.
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtWebSockets module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 /*!
43     \class QSslServer
44
45     \inmodule QtWebSockets
46
47     \brief Implements a secure TCP server over SSL.
48
49     \internal
50 */
51
52 #include "qsslserver_p.h"
53
54 #include <QtNetwork/QSslSocket>
55 #include <QtNetwork/QSslCipher>
56
57 QT_BEGIN_NAMESPACE
58
59 /*!
60     Constructs a new QSslServer with the given \a parent.
61
62     \internal
63 */
64 QSslServer::QSslServer(QObject *parent) :
65     QTcpServer(parent),
66     m_sslConfiguration(QSslConfiguration::defaultConfiguration())
67 {
68 }
69
70 /*!
71     Destroys the QSslServer.
72
73     All open connections are closed.
74
75     \internal
76 */
77 QSslServer::~QSslServer()
78 {
79 }
80
81 /*!
82     Sets the \a sslConfiguration to use.
83
84     \sa QSslSocket::setSslConfiguration()
85
86     \internal
87 */
88 void QSslServer::setSslConfiguration(const QSslConfiguration &sslConfiguration)
89 {
90     m_sslConfiguration = sslConfiguration;
91 }
92
93 /*!
94     Returns the current ssl configuration.
95
96     \internal
97 */
98 QSslConfiguration QSslServer::sslConfiguration() const
99 {
100     return m_sslConfiguration;
101 }
102
103 /*!
104     Called when a new connection is established.
105
106     Converts \a socket to a QSslSocket.
107
108     \internal
109 */
110 void QSslServer::incomingConnection(qintptr socket)
111 {
112     QSslSocket *pSslSocket = new QSslSocket();
113
114     if (Q_LIKELY(pSslSocket)) {
115         pSslSocket->setSslConfiguration(m_sslConfiguration);
116
117         if (Q_LIKELY(pSslSocket->setSocketDescriptor(socket))) {
118             connect(pSslSocket, &QSslSocket::peerVerifyError, this, &QSslServer::peerVerifyError);
119
120             typedef void (QSslSocket::* sslErrorsSignal)(const QList<QSslError> &);
121             connect(pSslSocket, static_cast<sslErrorsSignal>(&QSslSocket::sslErrors),
122                     this, &QSslServer::sslErrors);
123             connect(pSslSocket, &QSslSocket::encrypted, this, &QSslServer::newEncryptedConnection);
124
125             addPendingConnection(pSslSocket);
126
127             pSslSocket->startServerEncryption();
128         } else {
129            delete pSslSocket;
130         }
131     }
132 }
133
134 QT_END_NAMESPACE