Files
firecgi/parse.cc
Ian Gulliver 690c9ab8bd Google format
2019-05-18 12:15:11 -07:00

12 lines
232 B
C++

#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