Lines Matching refs:uri
79 coap_uri_scheme_is_secure(const coap_uri_t *uri) {
80 return uri && ((uri->scheme & COAP_URI_SCHEME_SECURE_MASK) != 0);
99 * @param uri The URI path to copy.
100 * @param length The length of uri.
104 coap_uri_t *coap_new_uri(const uint8_t *uri, unsigned int length);
111 * @param uri The coap_uri_t structure to copy.
115 coap_uri_t *coap_clone_uri(const coap_uri_t *uri);
120 * @param uri The coap_uri_t structure to remove.
122 void coap_delete_uri(coap_uri_t *uri);
135 * components are stored in the result parameter @p uri. Optional URI
142 * @param uri The coap_uri_t object to store the result.
147 int coap_split_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri);
151 * components are stored in the result parameter @p uri. Optional URI
160 * @param uri The coap_uri_t object to store the result.
165 int coap_split_proxy_uri(const uint8_t *str_var, size_t len, coap_uri_t *uri);
171 * If the dst defines an address that does not match the host in uri->host and
176 * @param uri The coap_uri_t object.
180 * uri->path.length and uri->query.length)
188 int coap_uri_into_options(const coap_uri_t *uri, const coap_address_t *dst,
244 * @return Reconstructed and escaped uri path string part or @c NULL