Begin removing several dependencies on Config object

このコミットが含まれているのは:
2019-09-29 17:12:36 +02:00
コミット 364d82a99f
9個のファイルの変更127行の追加79行の削除

ファイルの表示

@@ -19,7 +19,7 @@ class HttpGateway : public GatewayInterface
uint64_t maxPayloadLength;
public:
HttpGateway(const Config &config);
HttpGateway(std::string listenaddr, int port, uint64_t maxPayloadLength);
bool keepReading() override;
void work(RequestWorker &worker) override;
};