Fix for DELETE requests that keep the connection hanging
When a `DELETE` request is made without **Content-Length** header, it makes the connection hanging without a response
This commit makes sure we don't return 0 for **getRequestSize** method when it is a delete request.
Following request is an example to showcase this bug
```
DELETE /examples/_007_crud/authors/1 HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: localhost:8080
Connection: close
```