Commit 22e3872c by xia-chu

优化ip过滤逻辑性能

parent 706c63c6
...@@ -93,8 +93,8 @@ bool HttpFileManager::isIPAllowed(const std::string &ip) { ...@@ -93,8 +93,8 @@ bool HttpFileManager::isIPAllowed(const std::string &ip) {
if (allow_ip_range.empty()) { if (allow_ip_range.empty()) {
return true; return true;
} }
for (auto &range : allow_ip_range) {
auto ip_int = get_ip_uint64(ip); auto ip_int = get_ip_uint64(ip);
for (auto &range : allow_ip_range) {
if (ip_int >= range.first && ip_int <= range.second) { if (ip_int >= range.first && ip_int <= range.second) {
return true; return true;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论