| 274 | } |
| 275 | |
| 276 | inline bool IsRequest() const { |
| 277 | // https://datatracker.ietf.org/doc/html/rfc7231#section-4 |
| 278 | // more rare methods: https://www.iana.org/assignments/http-methods/http-methods.xhtml |
| 279 | return EqualToOneOf(to_lower(FirstLine().substr(0, FirstLine().find(" "))), "get", "post", "put", "head", "delete", "connect", "options", "trace", "patch"); |
| 280 | } |
| 281 | |
| 282 | inline void BuildInputChain() { |
| 283 | TParsedHeaders p; |
nothing calls this directly
no test coverage detected