fix missing return statement

This commit is contained in:
AlexandreRouma
2024-01-22 02:10:48 +01:00
parent 86dcec7495
commit 3e58d4ba31
2 changed files with 4 additions and 0 deletions

View File

@ -257,6 +257,7 @@ namespace net::http {
// Deserialize
req.deserialize(respData);
return 0; // Might wanna return size instead
}
int Client::sendResponseHeader(ResponseHeader& resp) {
@ -274,6 +275,7 @@ namespace net::http {
// Deserialize
resp.deserialize(respData);
return 0; // Might wanna return size instead
}
int Client::sendChunkHeader(ChunkHeader& chdr) {