added inputsockethandlerfactory

This commit is contained in:
Johannes Wendel
2019-06-15 14:52:42 +02:00
parent e90c3f6695
commit 7146f67169
9 changed files with 91 additions and 12 deletions

View File

@@ -9,12 +9,12 @@
namespace flippR_driver
{
namespace utility
namespace networking
{
using namespace Poco::Net;
OutputHTTPServer::OutputHTTPServer(std::shared_ptr<output::OutputDriver> output_driver, Socket &socket) :
HTTPServer(new OutputRequestHandlerFactory(output_driver), socket, new HTTPServerParams())
HTTPServer(new OutputRequestHandlerFactory(output_driver), socket, new HTTPServerParams())
{}
}

View File

@@ -12,7 +12,7 @@
namespace flippR_driver
{
namespace utility
namespace networking
{
class OutputHTTPServer : public Poco::Net::HTTPServer