XX CMake Package
Loading...
Searching...
No Matches
XXSecureNetworkServerInternal.h
Go to the documentation of this file.
1#ifndef XXSecureNetworkServerInternalH
2#define XXSecureNetworkServerInternalH
3
4#include <QTcpServer>
5
6#include <QSslConfiguration>
7
8namespace XX
9{
10 namespace SecureNetwork
11 {
12 class Socket;
13 class Server;
14
15 class ServerInternal : public QTcpServer
16 {
17 Q_OBJECT
18 public:
20
21 private slots:
22 void slotEncryptedConnection();
23
24 private:
25 void incomingConnection(qintptr socketDescriptor) override;
26
27 private:
28 Server* server;
29 };
30 } // namespace SecureNetwork
31} // namespace XX
32
33#endif // NOT XXSecureNetworkServerInternalH
secure network server
Definition XXSecureNetworkServer.h:22
secure network socket
Definition XXSecureNetworkSocket.h:20
Definition XXSecureNetworkServerInternal.h:11
Definition XXPopulatedAbstract.h:11