Applied WebApplication interface changes
This commit is contained in:
@@ -1,18 +1,18 @@
|
||||
#include "proxyapplication.h"
|
||||
|
||||
#include "webserver.h"
|
||||
#include "httprequest.h"
|
||||
#include "httpresponse.h"
|
||||
#include "httpclientconnection.h"
|
||||
|
||||
ProxyApplication::ProxyApplication(const QJsonObject &config, QObject *parent) :
|
||||
WebApplication(parent)
|
||||
ProxyApplication::ProxyApplication(const QJsonObject &config, WebServer &webServer) :
|
||||
WebApplication(&webServer), m_webServer(webServer)
|
||||
{
|
||||
|
||||
Q_UNUSED(config)
|
||||
}
|
||||
|
||||
void ProxyApplication::start()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void ProxyApplication::handleRequest(HttpClientConnection *connection, const HttpRequest &request)
|
||||
|
||||
Reference in New Issue
Block a user