url: add remark to documentation about hardcoded // substring (#293)

This commit is contained in:
Jan Engelhardt 2024-01-30 12:41:49 +01:00 committed by GitHub
parent 874a1d8c33
commit c3c6242ed1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,10 @@ namespace utility {
/** This class represents a Uniform Resource Locator (a pointer
* to a "resource" on the World Wide Web).
* to a "resource" on the World Wide Web). It is meant to be only
* used in conjunction with vmime, as all URLs and URL components are
* interpreted as, or re-written into, Common Internet Scheme (RFC 1738 §3.1)
* form. (As such, it cannot be used with e.g. the mailto: scheme.)
*
* Format:
* "protocol://[username[:password]@]host[:port][/path]"