Refactor: move methods under the same #if section.

This commit is contained in:
Chocobo1 2017-04-10 20:10:48 +08:00
commit d1ee54f6ea
2 changed files with 31 additions and 31 deletions

View file

@ -34,6 +34,7 @@
#define HTTP_SERVER_H
#include <QTcpServer>
#ifndef QT_NO_OPENSSL
#include <QSslCertificate>
#include <QSslCipher>
@ -60,12 +61,13 @@ namespace Http
#endif
private:
IRequestHandler *m_requestHandler;
void incomingConnection(qintptr socketDescriptor);
IRequestHandler *m_requestHandler;
#ifndef QT_NO_OPENSSL
QList<QSslCipher> safeCipherList() const;
bool m_https;
QList<QSslCertificate> m_certificates;
QSslKey m_key;