| 72 | static const size_t SSL_REQUEST_PAYLOAD_SIZE = 32; |
| 73 | |
| 74 | static bool checkShouldReplaceQuery(const String & query, const String & prefix) |
| 75 | { |
| 76 | return query.length() >= prefix.length() |
| 77 | && std::equal(prefix.begin(), prefix.end(), query.begin(), [](char a, char b) { return std::tolower(a) == std::tolower(b); }); |
| 78 | } |
| 79 | |
| 80 | static bool isFederatedServerSetupSetCommand(const String & query) |
| 81 | { |
no test coverage detected