| 13 | "Tracked header table must match HttpParser::HeaderType"); |
| 14 | |
| 15 | static char scHttpToLowerAscii(char value) |
| 16 | { |
| 17 | return value >= 'A' and value <= 'Z' ? static_cast<char>(value + ('a' - 'A')) : value; |
| 18 | } |
| 19 | |
| 20 | static bool scHttpEqualsIgnoreCaseAscii(const char* lhs, const char* rhs, SC::size_t length) |
| 21 | { |
no outgoing calls
no test coverage detected