httpgateway: take listen/port data from config file

This commit is contained in:
2019-02-21 10:47:49 +01:00
parent f5b594449d
commit 8b125c7775
2 changed files with 16 additions and 1 deletions

View File

@@ -13,6 +13,10 @@ class HttpGateway : public GatewayInterface
httplib::Response convertResponse(Response response);
Request convertRequest(httplib::Request request);
// void worker(const httplib::Request& req, httplib::Response& res);
std::string listenaddr;
int listenport;
public:
HttpGateway(const Config &config);
bool keepReading() override;