Initialize the server response code

This commit is contained in:
Jordan Bancino 2022-08-28 15:48:58 -04:00
parent f12eaaaba8
commit 47338fd001

View file

@ -102,6 +102,7 @@ HttpServerContextCreate(HttpRequestMethod requestMethod,
c->requestMethod = requestMethod;
c->requestPath = requestPath;
c->stream = stream;
c->responseStatus = HTTP_OK;
return c;
}