AusweisApp
 
Lade ...
Suche ...
Keine Treffer
LocalTlsServer.h
gehe zur Dokumentation dieser Datei
1
4
5#pragma once
6
7#include "TlsServer.h"
8
9
10namespace governikus
11{
12
14 : public TlsServer
15{
16 Q_OBJECT
17
18 private:
19 QSslConfiguration sslConfiguration() const override;
20
21 public:
22 LocalTlsServer() = default;
23 bool startListening(quint16 pPort) override;
24
25 private Q_SLOTS:
26 void onSslErrors(const QList<QSslError>& pErrors) override;
27 void onEncrypted() override;
28};
29
30} // namespace governikus
bool startListening(quint16 pPort) override
Definition LocalTlsServer.cpp:19
TlsServer()
Definition TlsServer.cpp:15
Defines the AccessRight and AccessRole enum.
Definition CommandApdu.h:17