Overte C++ Documentation
HTTPSConnection.h
1 //
2 // HTTPSConnection.h
3 // libraries/embedded-webserver/src
4 //
5 // Created by Stephen Birarda on 2014-04-24.
6 // Copyright 2014 High Fidelity, Inc.
7 //
8 // Distributed under the Apache License, Version 2.0.
9 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
10 //
11 
12 #ifndef hifi_HTTPSConnection_h
13 #define hifi_HTTPSConnection_h
14 
15 #include "HTTPConnection.h"
16 #include "HTTPSManager.h"
17 
18 class HTTPSConnection : public HTTPConnection {
19  Q_OBJECT
20 public:
21  HTTPSConnection(QSslSocket* sslSocket, HTTPSManager* parentManager);
22 protected slots:
23  void handleSSLErrors(const QList<QSslError>& errors);
24 };
25 
26 #endif // hifi_HTTPSConnection_h
Handles a single HTTP connection.
Definition: HTTPConnection.h:43