diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-05-03 13:55:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-03 13:55:57 +0200 |
commit | 015fc2ad4f23011540d84b2d513073f74619e6f3 (patch) | |
tree | f3c2fd47b781cb7a559bf3324b9a3ccbefdf7db8 /core/string/ustring.h | |
parent | a4afa05efefba62673dfce2055cdf9bc9187905e (diff) | |
parent | 3bb40669d5efea707a90171ad2430a81fd4f4726 (diff) |
Merge pull request #48205 from Faless/net/4.x_url_parsing
[Net] Implement String::parse_url for parsing URLs.
Diffstat (limited to 'core/string/ustring.h')
-rw-r--r-- | core/string/ustring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/string/ustring.h b/core/string/ustring.h index 1e362d7683..a56845deff 100644 --- a/core/string/ustring.h +++ b/core/string/ustring.h @@ -416,6 +416,7 @@ public: String c_unescape() const; String json_escape() const; String word_wrap(int p_chars_per_line) const; + Error parse_url(String &r_scheme, String &r_host, int &r_port, String &r_path) const; String property_name_encode() const; |