Adapt to firecgi API change, add asan target, new Makefile ar merge method

This commit is contained in:
flamingcow
2019-05-07 23:26:48 -07:00
parent 990e28a0ce
commit 3ef9cabbd5
6 changed files with 20 additions and 14 deletions

View File

@@ -11,7 +11,7 @@ class Server {
void Serve();
private:
void OnRequest(std::unique_ptr<firecgi::Request> request);
void OnRequest(firecgi::Request* request);
std::function<void(std::unique_ptr<Stream>)> callback_;
firecgi::Server firecgi_server_;