upipe/uref_uri.h header reference
Header inclusion
Members
Functions
- int uref_uri_cmp_fragment(struct uref *uref1, struct uref *uref2)
- int uref_uri_cmp_host(struct uref *uref1, struct uref *uref2)
- int uref_uri_cmp_path(struct uref *uref1, struct uref *uref2)
- int uref_uri_cmp_port(struct uref *uref1, struct uref *uref2)
- int uref_uri_cmp_query(struct uref *uref1, struct uref *uref2)
- int uref_uri_cmp_scheme(struct uref *uref1, struct uref *uref2)
- int uref_uri_cmp_userinfo(struct uref *uref1, struct uref *uref2)
- int uref_uri_copy(struct uref *uref, struct uref *from)
- int uref_uri_copy_fragment(struct uref *uref, struct uref *uref_src)
- int uref_uri_copy_host(struct uref *uref, struct uref *uref_src)
- int uref_uri_copy_path(struct uref *uref, struct uref *uref_src)
- int uref_uri_copy_port(struct uref *uref, struct uref *uref_src)
- int uref_uri_copy_query(struct uref *uref, struct uref *uref_src)
- int uref_uri_copy_scheme(struct uref *uref, struct uref *uref_src)
- int uref_uri_copy_userinfo(struct uref *uref, struct uref *uref_src)
- int uref_uri_delete(struct uref *uref)
- int uref_uri_delete_fragment(struct uref *uref)
- int uref_uri_delete_host(struct uref *uref)
- int uref_uri_delete_path(struct uref *uref)
- int uref_uri_delete_port(struct uref *uref)
- int uref_uri_delete_query(struct uref *uref)
- int uref_uri_delete_scheme(struct uref *uref)
- int uref_uri_delete_userinfo(struct uref *uref)
- int uref_uri_get(struct uref *uref, struct uuri *uuri)
- int uref_uri_get_fragment(struct uref *uref, const char **p)
- int uref_uri_get_host(struct uref *uref, const char **p)
- int uref_uri_get_path(struct uref *uref, const char **p)
- int uref_uri_get_port(struct uref *uref, const char **p)
- int uref_uri_get_query(struct uref *uref, const char **p)
- int uref_uri_get_scheme(struct uref *uref, const char **p)
- int uref_uri_get_to_str(struct uref *uref, char **str_p)
- int uref_uri_get_userinfo(struct uref *uref, const char **p)
- int uref_uri_match_fragment(struct uref *uref, const char *prefix)
- int uref_uri_match_host(struct uref *uref, const char *prefix)
- int uref_uri_match_path(struct uref *uref, const char *prefix)
- int uref_uri_match_port(struct uref *uref, const char *prefix)
- int uref_uri_match_query(struct uref *uref, const char *prefix)
- int uref_uri_match_scheme(struct uref *uref, const char *prefix)
- int uref_uri_match_userinfo(struct uref *uref, const char *prefix)
- int uref_uri_set(struct uref *uref, const struct uuri *uuri)
- int uref_uri_set_fragment(struct uref *uref, const char *v)
- int uref_uri_set_from_str(struct uref *uref, const char *str)
- int uref_uri_set_host(struct uref *uref, const char *v)
- int uref_uri_set_path(struct uref *uref, const char *v)
- int uref_uri_set_port(struct uref *uref, const char *v)
- int uref_uri_set_query(struct uref *uref, const char *v)
- int uref_uri_set_scheme(struct uref *uref, const char *v)
- int uref_uri_set_userinfo(struct uref *uref, const char *v)
Members detail
This macro is declared in upipe/uref_uri.h source file, line 26.
This function is declared in upipe/uref_uri.h source file, line 41.
This function compares the uri fragment attribute in two urefs.
Parameter list:
- uref1: pointer to the first uref
- uref2: pointer to the second uref
The return value is 0 if both attributes are absent or identical
This function is declared in upipe/uref_uri.h source file, line 37.
This function compares the uri host attribute in two urefs.
Parameter list:
- uref1: pointer to the first uref
- uref2: pointer to the second uref
The return value is 0 if both attributes are absent or identical
This function is declared in upipe/uref_uri.h source file, line 39.
This function compares the uri path attribute in two urefs.
Parameter list:
- uref1: pointer to the first uref
- uref2: pointer to the second uref
The return value is 0 if both attributes are absent or identical
This function is declared in upipe/uref_uri.h source file, line 38.
This function compares the uri port attribute in two urefs.
Parameter list:
- uref1: pointer to the first uref
- uref2: pointer to the second uref
The return value is 0 if both attributes are absent or identical
This function is declared in upipe/uref_uri.h source file, line 40.
This function compares the uri query attribute in two urefs.
Parameter list:
- uref1: pointer to the first uref
- uref2: pointer to the second uref
The return value is 0 if both attributes are absent or identical
This function is declared in upipe/uref_uri.h source file, line 35.
This function compares the uri scheme attribute in two urefs.
Parameter list:
- uref1: pointer to the first uref
- uref2: pointer to the second uref
The return value is 0 if both attributes are absent or identical
This function is declared in upipe/uref_uri.h source file, line 36.
This function compares the uri user info attribute in two urefs.
Parameter list:
- uref1: pointer to the first uref
- uref2: pointer to the second uref
The return value is 0 if both attributes are absent or identical
This function is declared in upipe/uref_uri.h source file, line 63.
This function is declared in upipe/uref_uri.h source file, line 41.
This function copies the uri fragment attribute from an uref to another.
Parameter list:
- uref: pointer to the uref
- uref_src: pointer to the source uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 37.
This function copies the uri host attribute from an uref to another.
Parameter list:
- uref: pointer to the uref
- uref_src: pointer to the source uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 39.
This function copies the uri path attribute from an uref to another.
Parameter list:
- uref: pointer to the uref
- uref_src: pointer to the source uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 38.
This function copies the uri port attribute from an uref to another.
Parameter list:
- uref: pointer to the uref
- uref_src: pointer to the source uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 40.
This function copies the uri query attribute from an uref to another.
Parameter list:
- uref: pointer to the uref
- uref_src: pointer to the source uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 35.
This function copies the uri scheme attribute from an uref to another.
Parameter list:
- uref: pointer to the uref
- uref_src: pointer to the source uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 36.
This function copies the uri user info attribute from an uref to another.
Parameter list:
- uref: pointer to the uref
- uref_src: pointer to the source uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 49.
This function is declared in upipe/uref_uri.h source file, line 41.
This function deletes the uri fragment attribute of a uref.
Parameter list:
- uref: pointer to the uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 37.
This function deletes the uri host attribute of a uref.
Parameter list:
- uref: pointer to the uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 39.
This function deletes the uri path attribute of a uref.
Parameter list:
- uref: pointer to the uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 38.
This function deletes the uri port attribute of a uref.
Parameter list:
- uref: pointer to the uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 40.
This function deletes the uri query attribute of a uref.
Parameter list:
- uref: pointer to the uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 35.
This function deletes the uri scheme attribute of a uref.
Parameter list:
- uref: pointer to the uref
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 36.
This function deletes the uri user info attribute of a uref.
Parameter list:
- uref: pointer to the uref
The return value is an error code
int uref_uri_get(struct uref *uref, struct uuri *uuri)
This function is declared in upipe/uref_uri.h source file, line 44.
This function is declared in upipe/uref_uri.h source file, line 41.
This function returns the uri fragment attribute of a uref.
Parameter list:
- uref: pointer to the uref
- p: pointer to the retrieved value (modified during execution)
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 37.
This function returns the uri host attribute of a uref.
Parameter list:
- uref: pointer to the uref
- p: pointer to the retrieved value (modified during execution)
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 39.
This function returns the uri path attribute of a uref.
Parameter list:
- uref: pointer to the uref
- p: pointer to the retrieved value (modified during execution)
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 38.
This function returns the uri port attribute of a uref.
Parameter list:
- uref: pointer to the uref
- p: pointer to the retrieved value (modified during execution)
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 40.
This function returns the uri query attribute of a uref.
Parameter list:
- uref: pointer to the uref
- p: pointer to the retrieved value (modified during execution)
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 35.
This function returns the uri scheme attribute of a uref.
Parameter list:
- uref: pointer to the uref
- p: pointer to the retrieved value (modified during execution)
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 46.
This function is declared in upipe/uref_uri.h source file, line 36.
This function returns the uri user info attribute of a uref.
Parameter list:
- uref: pointer to the uref
- p: pointer to the retrieved value (modified during execution)
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 41.
This function compares the uri fragment attribute to a given prefix.
Parameter list:
- uref: pointer to the uref
- prefix: prefix to match
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 37.
This function compares the uri host attribute to a given prefix.
Parameter list:
- uref: pointer to the uref
- prefix: prefix to match
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 39.
This function compares the uri path attribute to a given prefix.
Parameter list:
- uref: pointer to the uref
- prefix: prefix to match
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 38.
This function compares the uri port attribute to a given prefix.
Parameter list:
- uref: pointer to the uref
- prefix: prefix to match
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 40.
This function compares the uri query attribute to a given prefix.
Parameter list:
- uref: pointer to the uref
- prefix: prefix to match
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 35.
This function compares the uri scheme attribute to a given prefix.
Parameter list:
- uref: pointer to the uref
- prefix: prefix to match
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 36.
This function compares the uri user info attribute to a given prefix.
Parameter list:
- uref: pointer to the uref
- prefix: prefix to match
The return value is an error code
int uref_uri_set(struct uref *uref, const struct uuri *uuri)
This function is declared in upipe/uref_uri.h source file, line 43.
This function is declared in upipe/uref_uri.h source file, line 41.
This function sets the uri fragment attribute of a uref.
Parameter list:
- uref: pointer to the uref
- v: value to set
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 45.
This function is declared in upipe/uref_uri.h source file, line 37.
This function sets the uri host attribute of a uref.
Parameter list:
- uref: pointer to the uref
- v: value to set
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 39.
This function sets the uri path attribute of a uref.
Parameter list:
- uref: pointer to the uref
- v: value to set
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 38.
This function sets the uri port attribute of a uref.
Parameter list:
- uref: pointer to the uref
- v: value to set
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 40.
This function sets the uri query attribute of a uref.
Parameter list:
- uref: pointer to the uref
- v: value to set
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 35.
This function sets the uri scheme attribute of a uref.
Parameter list:
- uref: pointer to the uref
- v: value to set
The return value is an error code
This function is declared in upipe/uref_uri.h source file, line 36.
This function sets the uri user info attribute of a uref.
Parameter list:
- uref: pointer to the uref
- v: value to set
The return value is an error code