shinrich commented on a change in pull request #7887:
URL: https://github.com/apache/trafficserver/pull/7887#discussion_r641650167



##########
File path: proxy/hdrs/URL.cc
##########
@@ -1194,6 +1194,12 @@ url_is_strictly_compliant(const char *start, const char 
*end)
 } // namespace UrlImpl
 using namespace UrlImpl;
 
+bool
+url_is_compliant(const char *start, const char *end)
+{
+  return url_is_strictly_compliant(start, end);
+}
+

Review comment:
       Have to do this wrapper because url_is_strictly_compliant is in the 
UrlImpl space.   I tried taking it out and it wouldn't build because of a 
missing hash table maybe because it is calling ParseRules?




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to