AusweisApp2
Lade ...
Suche ...
Keine Treffer
NetworkReplyTimeout.h
gehe zur Dokumentation dieser Datei
1
9#pragma once
10
11#include "NetworkManager.h"
12
13#include <QNetworkReply>
14#include <QTimer>
15
16namespace governikus
17{
18
20 : public QObject
21{
22 Q_OBJECT
23
24 private:
25 QTimer mTimer;
26
27 NetworkReplyTimeout(QNetworkReply* pReply, const int pTimeout);
28
29 private Q_SLOTS:
30 void onTimeout();
31 void onShutdown();
32
33 public:
37 static void setTimeout(const NetworkManager* pManager, QNetworkReply* pReply, const int pTimeoutMilliSeconds);
38};
39
40} // namespace governikus
Definition: NetworkManager.h:30
Definition: NetworkReplyTimeout.h:21
static void setTimeout(const NetworkManager *pManager, QNetworkReply *pReply, const int pTimeoutMilliSeconds)
Set the timeout in milli-seconds on the specified QNetworkReply.
Definition: NetworkReplyTimeout.cpp:44
Implementation of GeneralAuthenticate response APDUs.
Definition: CommandApdu.h:16