diff options
author | Max Kellermann <max@duempel.org> | 2009-12-26 02:07:44 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-27 14:17:25 +0100 |
commit | af964e8929407c43e6c45c2bd3f1a0c534b2f0cc (patch) | |
tree | d01305076ab19c81691932230f602600dafba044 /src/uri.h | |
parent | 554b2b0ed9f8e27e3e03e1174f0c1feb7a5bf130 (diff) | |
download | mpd-af964e8929407c43e6c45c2bd3f1a0c534b2f0cc.tar.gz mpd-af964e8929407c43e6c45c2bd3f1a0c534b2f0cc.tar.xz mpd-af964e8929407c43e6c45c2bd3f1a0c534b2f0cc.zip |
uri: added function uri_safe_local()
Diffstat (limited to 'src/uri.h')
-rw-r--r-- | src/uri.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -36,6 +36,18 @@ const char * uri_get_suffix(const char *uri); /** + * Returns true if this is a safe "local" URI: + * + * - non-empty + * - does not begin or end with a slash + * - no double slashes + * - no path component begins with a dot + */ +G_GNUC_PURE +bool +uri_safe_local(const char *uri); + +/** * Removes HTTP username and password from the URI. This may be * useful for displaying an URI without disclosing secrets. Returns * NULL if nothing needs to be removed, or if the URI is not |