| 4152 | } |
| 4153 | |
| 4154 | inline bool expect_content(const Request &req) { |
| 4155 | if (req.method == "POST" || req.method == "PUT" || req.method == "PATCH" || |
| 4156 | req.method == "PRI" || req.method == "DELETE") { |
| 4157 | return true; |
| 4158 | } |
| 4159 | // TODO: check if Content-Length is set |
| 4160 | return false; |
| 4161 | } |
| 4162 | |
| 4163 | inline bool has_crlf(const char *s) { |
| 4164 | auto p = s; |