Add keepalive comment messages, per spec

This commit is contained in:
flamingcow
2019-05-12 11:18:59 -07:00
parent b079f48367
commit 9162799be0
9 changed files with 140 additions and 8 deletions

View File

@@ -5,6 +5,7 @@
#include "firecgi/server.h"
#include "index.h"
#include "keepalive.h"
#include "stream.h"
namespace firesse {
@@ -21,6 +22,7 @@ class Server {
std::function<void(Stream*)> callback_;
Index index_;
KeepAlive keep_alive_;
firecgi::Server firecgi_server_;
};