mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-12 05:47:24 +02:00
26 lines
673 B
C++
26 lines
673 B
C++
//
|
|
// HTTPSConnection.h
|
|
// libraries/embedded-webserver/src
|
|
//
|
|
// Created by Stephen Birarda on 2014-04-24.
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_HTTPSConnection_h
|
|
#define hifi_HTTPSConnection_h
|
|
|
|
#include "HTTPConnection.h"
|
|
#include "HTTPSManager.h"
|
|
|
|
class HTTPSConnection : public HTTPConnection {
|
|
Q_OBJECT
|
|
public:
|
|
HTTPSConnection(QSslSocket* sslSocket, HTTPSManager* parentManager);
|
|
protected slots:
|
|
void handleSSLErrors(const QList<QSslError>& errors);
|
|
};
|
|
|
|
#endif // hifi_HTTPSConnection_h
|