NuriaProject Framework  0.1
The NuriaProject Framework
sslserver.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_SSLSERVER_HPP
18 #define NURIA_SSLSERVER_HPP
19 
20 #include "network_global.hpp"
21 #include <QSslCertificate>
22 #include <QTcpServer>
23 #include <QSslError>
24 #include <QSslKey>
25 
26 namespace Nuria {
27 class SslServerPrivate;
28 
34 class NURIA_NETWORK_EXPORT SslServer : public QTcpServer {
35  Q_OBJECT
36 public:
37  explicit SslServer (QObject *parent = 0);
38  ~SslServer ();
39 
40  const QSslKey &privateKey () const;
41  const QSslCertificate &localCertificate () const;
42 
43  void setPrivateKey (const QSslKey &key);
44  void setLocalCertificate (const QSslCertificate &cert);
45 
46 private slots:
47 
48  void connectionEncrypted ();
49  void sslError (QList< QSslError > errors);
50 
51 protected:
52 
53  virtual void incomingConnection (int handle);
54 
55 private:
56 
57  //
58  SslServerPrivate *d_ptr;
59 
60 };
61 }
62 
63 #endif // NURIA_SSLSERVER_HPP
Definition: abstractsessionmanager.hpp:24
Definition: sslserver.hpp:34