Improve string compare performance
This commit is contained in:
parent
8a803b30f6
commit
3d83cbb872
@ -4540,9 +4540,9 @@ inline bool Server::parse_request_line(const char *s, Request &req) {
|
|||||||
if (count != 3) { return false; }
|
if (count != 3) { return false; }
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::set<std::string> methods{"GET", "HEAD", "POST", "PUT",
|
static const std::set<std::string> methods{
|
||||||
"DELETE", "CONNECT", "OPTIONS", "TRACE",
|
"GET", "HEAD", "POST", "PUT", "DELETE",
|
||||||
"PATCH", "PRI"};
|
"CONNECT", "OPTIONS", "TRACE", "PATCH", "PRI"};
|
||||||
|
|
||||||
if (methods.find(req.method) == methods.end()) { return false; }
|
if (methods.find(req.method) == methods.end()) { return false; }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user