* @brief Check if an IP address is a localhost address. */
| 76 | * @brief Check if an IP address is a localhost address. |
| 77 | */ |
| 78 | bool IsLocalhostIP(const std::string& ip) |
| 79 | { |
| 80 | return ip == "127.0.0.1" || ip == "::1" || ip == "::ffff:127.0.0.1"; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * @brief Constant-time string comparison to prevent timing attacks. |