Files
firecgi/parse.cc

12 lines
232 B
C++
Raw Normal View History

2019-05-04 23:21:33 -07:00
#include "parse.h"
namespace firecgi {
Header::Header(uint8_t type_in, uint16_t request_id, uint16_t content_length)
2019-05-18 12:15:11 -07:00
: type(type_in) {
SetRequestId(request_id);
SetContentLength(content_length);
2019-05-04 23:21:33 -07:00
}
2019-05-18 12:15:11 -07:00
} // namespace firecgi