VLC 4.0.0-dev
|
Functions | |
char * | vlc_uri_decode_duplicate (const char *str) |
Decodes an URI component. | |
static int_fast8_t | hex_to_char (unsigned char c) |
char * | vlc_uri_decode (char *str) |
Decodes an URI component in place. | |
static bool | isurialnum (int c) |
static bool | isurisafe (int c) |
static bool | isurisubdelim (int c) |
static bool | isurihex (int c) |
static char * | encode_URI_bytes (const char *str, size_t *restrict lenp) |
char * | vlc_uri_encode (const char *str) |
Encodes a URI component. | |
char * | vlc_path2uri (const char *path, const char *scheme) |
Converts local path to URL. | |
char * | vlc_uri2path (const char *url) |
Converts a URI to a local path. | |
static char * | vlc_idna_to_ascii (const char *idn) |
Converts a UTF-8 nul-terminated IDN to nul-terminated ASCII domain name. | |
static char * | vlc_iri2uri (const char *iri) |
static bool | vlc_uri_component_validate (const char *str, const char *extras) |
static bool | vlc_uri_host_validate (const char *str) |
static bool | vlc_uri_path_validate (const char *str) |
static int | vlc_UrlParseInner (vlc_url_t *restrict url, const char *str) |
int | vlc_UrlParse (vlc_url_t *url, const char *str) |
Parses an URI or IRI. | |
static char * | vlc_uri_fixup_inner (const char *str, const char *extras) |
int | vlc_UrlParseFixup (vlc_url_t *url, const char *str) |
Parses an URI or IRI and fix up the path part. | |
void | vlc_UrlClean (vlc_url_t *restrict url) |
static char * | vlc_uri_merge_paths (const char *base, const char *ref) |
Merge paths. | |
static char * | vlc_uri_remove_dot_segments (char *str) |
Remove dot segments. | |
char * | vlc_uri_compose (const vlc_url_t *uri) |
Composes an URI. | |
char * | vlc_uri_resolve (const char *base, const char *ref) |
Resolves an URI reference. | |
static void | vlc_uri_putc (struct vlc_memstream *s, int c, const char *extras) |
char * | vlc_uri_fixup (const char *str) |
Fixes up a URI string. | |
Variables | |
static const char | urihex [] = "0123456789ABCDEF" |
|
static |
References isurisafe(), likely, unlikely, and urihex.
Referenced by vlc_path2uri(), and vlc_uri_encode().
|
static |
Referenced by vlc_uri_decode().
|
static |
Referenced by isurisafe(), vlc_uri_fixup(), and vlc_UrlParseInner().
|
static |
Referenced by vlc_uri_component_validate(), vlc_uri_fixup(), and vlc_uri_fixup_inner().
|
static |
References isurialnum().
Referenced by encode_URI_bytes(), vlc_uri_component_validate(), vlc_uri_fixup_inner(), and vlc_uri_putc().
|
static |
Referenced by vlc_uri_component_validate(), vlc_uri_fixup_inner(), and vlc_uri_putc().
|
static |
Converts a UTF-8 nul-terminated IDN to nul-terminated ASCII domain name.
idn | UTF-8 Internationalized Domain Name to convert |
References vlc_memstream::error, p, strdup(), unlikely, and vlc_alloc().
Referenced by vlc_UrlParseInner().
|
static |
References p, unlikely, and urihex.
Referenced by vlc_UrlParseInner().
|
static |
References isurihex(), isurisafe(), and isurisubdelim().
Referenced by vlc_uri_host_validate(), vlc_uri_path_validate(), vlc_UrlParseFixup(), and vlc_UrlParseInner().
|
static |
References isurihex(), isurisafe(), isurisubdelim(), vlc_memstream::stream, vlc_memstream_close(), vlc_memstream_open(), vlc_memstream_printf(), and vlc_memstream_putc().
Referenced by vlc_UrlParseFixup().
|
static |
References vlc_uri_component_validate().
Referenced by vlc_UrlParseInner().
|
static |
Merge paths.
See IETF RFC3986 section 5.2.3 for details.
References asprintf(), and unlikely.
Referenced by vlc_uri_resolve().
|
static |
References vlc_uri_component_validate().
Referenced by vlc_UrlParse(), and vlc_UrlParseFixup().
|
static |
References isurisafe(), isurisubdelim(), vlc_memstream_printf(), and vlc_memstream_putc().
Referenced by vlc_uri_fixup().
|
static |
Remove dot segments.
See IETF RFC3986 section 5.2.4 for details.
References memrchr().
Referenced by vlc_uri_resolve().
void vlc_UrlClean | ( | vlc_url_t *restrict | url | ) |
|
static |
References isurialnum(), strdup(), unlikely, vlc_idna_to_ascii(), vlc_iri2uri(), vlc_uri_component_validate(), vlc_uri_decode(), and vlc_uri_host_validate().
Referenced by vlc_UrlParse(), and vlc_UrlParseFixup().
|
static |
Referenced by encode_URI_bytes(), and vlc_iri2uri().