AusweisApp2
LocalTlsServer.h
gehe zur Dokumentation dieser Datei
1 
7 #pragma once
8 
9 #include "TlsServer.h"
10 
11 
12 namespace governikus
13 {
14 
16  : public TlsServer
17 {
18  Q_OBJECT
19 
20  private:
21  QSslConfiguration sslConfiguration() const override;
22 
23  public:
24  LocalTlsServer() = default;
25  bool startListening(quint16 pPort) override;
26 
27  private Q_SLOTS:
28  void onSslErrors(const QList<QSslError>& pErrors) override;
29  void onEncrypted() override;
30 };
31 
32 } // namespace governikus
Definition: LocalTlsServer.h:17
bool startListening(quint16 pPort) override
Definition: LocalTlsServer.cpp:19
Definition: TlsServer.h:22
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16