| 58 | for (size_t idx = 0; idx < bytes.sizeInBytes(); ++idx) |
| 59 | { |
| 60 | if (not isHttpTokenCharacter(bytes[idx])) |
| 61 | { |
| 62 | return false; |
| 63 | } |
| 64 | } |
| 65 | return true; |
| 66 | } |
| 67 | |
| 68 | static bool isCookieValueByte(char value) |
| 69 | { |
| 70 | const unsigned char byte = static_cast<unsigned char>(value); |
no test coverage detected