More imports

This commit is contained in:
flamingcow
2019-05-04 23:21:33 -07:00
parent 9d83f21dfa
commit 5c8bd9e095
6 changed files with 360 additions and 1 deletions

11
parse.cc Normal file
View File

@@ -0,0 +1,11 @@
#include "parse.h"
namespace firecgi {
Header::Header(uint8_t type_in, uint16_t request_id, uint16_t content_length)
: type(type_in) {
SetRequestId(request_id);
SetContentLength(content_length);
}
} // namespace firecgi