Clean up win32 server example.

This commit is contained in:
jmsgrogan 2023-01-10 09:28:15 +00:00
parent 5362b694e0
commit 2c825adc1d
23 changed files with 337 additions and 156 deletions

View file

@ -9,9 +9,9 @@ std::string HttpMessageHandler::onMessage(const std::string& message)
request.parseMessage(message);
HttpResponse response;
response.SetBody("Hello world!");
response.setBody("Hello world!");
const auto response_message = response.ToString();
const auto response_message = response.toString();
return response_message;
}