This is an automated email from the ASF dual-hosted git repository.
zwoop pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/9.0.x by this push:
new 6fd476b Fix eval_ip compile - missing const. (#7087)
6fd476b is described below
commit 6fd476bacbbaa7a8df5093f2aea4ee2ee5e579a7
Author: Randy DuCharme <[email protected]>
AuthorDate: Wed Aug 5 12:37:00 2020 -0500
Fix eval_ip compile - missing const. (#7087)
Signed-off-by: Randy DuCharme <[email protected]>
(cherry picked from commit 10d5707e2305eee176ca7b35a5d703e1127e56da)
---
plugins/experimental/maxmind_acl/mmdb.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/experimental/maxmind_acl/mmdb.h
b/plugins/experimental/maxmind_acl/mmdb.h
index 828ffe3..561b42f 100644
--- a/plugins/experimental/maxmind_acl/mmdb.h
+++ b/plugins/experimental/maxmind_acl/mmdb.h
@@ -104,5 +104,5 @@ protected:
void loadhtml(YAML::Node htmlNode);
bool eval_country(MMDB_entry_data_s *entry_data, const char *path, int
path_len);
void parseregex(YAML::Node regex, bool allow);
- ipstate eval_ip(const sockaddr *sock);
+ ipstate eval_ip(const sockaddr *sock) const;
};