From 9f5e4e23570d30d3f5e7f98b2781e62a1d58d671 Mon Sep 17 00:00:00 2001 From: Tijmen van Nesselrooij Date: Sat, 15 Jun 2019 21:19:27 +0200 Subject: [PATCH] Added % todo comment in url parser function --- src/http/url.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/http/url.cpp b/src/http/url.cpp index 37b6fc5..470d10f 100644 --- a/src/http/url.cpp +++ b/src/http/url.cpp @@ -24,6 +24,7 @@ namespace Http bool Url::TryParseFromUrlString(std::string urlstring) { + // TODO add % decoding unsigned queryPos = 0; static std::string const validSpecialCharacters = "-._~:/?#[]@!$&'()*+,;="; for(unsigned i = 0; i < urlstring.size(); ++i)