diff options
Diffstat (limited to 'include/Uri')
-rw-r--r-- | include/Uri/Uri.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/Uri/Uri.hpp b/include/Uri/Uri.hpp index 8be3dd0..afdb631 100644 --- a/include/Uri/Uri.hpp +++ b/include/Uri/Uri.hpp @@ -163,6 +163,14 @@ namespace Uri { */ std::string GetFragment() const; + /** + * This method applies the "remove_dot_segments" routine talked about + * in RFC 3986 (https://tools.ietf.org/html/rfc3986) to the path + * segments of the URI, in order to normalize the path + * (apply and remove "." and ".." segments). + */ + void NormalizePath(); + // Private properties private: /** |