Lines Matching defs:uri

36 sip_free_parsed_uri(sip_uri_t uri)
40 if (uri == NULL)
43 _uri = (_sip_uri_t *)uri;
119 sip_is_sipuri(const struct sip_uri *uri)
123 if (uri == NULL)
125 _uri = (_sip_uri_t *)uri;
137 sip_check_get_param(const struct sip_uri *uri, int *error)
142 if (uri == NULL) {
147 return ((_sip_uri_t *)uri);
155 sip_get_uri_scheme(const struct sip_uri *uri, int *error)
159 _uri = sip_check_get_param(uri, error);
176 sip_get_uri_user(const struct sip_uri *uri, int *error)
180 _uri = sip_check_get_param(uri, error);
186 if (uri->sip_uri_user.sip_str_len > 0)
187 return (&uri->sip_uri_user);
195 sip_get_uri_password(const struct sip_uri *uri, int *error)
199 _uri = sip_check_get_param(uri, error);
214 sip_get_uri_host(const struct sip_uri *uri, int *error)
218 _uri = sip_check_get_param(uri, error);
233 sip_get_uri_port(const struct sip_uri *uri, int *error)
237 _uri = sip_check_get_param(uri, error);
250 sip_get_uri_params(const struct sip_uri *uri, int *error)
254 _uri = sip_check_get_param(uri, error);
273 sip_get_uri_headers(const struct sip_uri *uri, int *error)
277 _uri = sip_check_get_param(uri, error);
297 sip_get_uri_opaque(const struct sip_uri *uri, int *error)
301 _uri = sip_check_get_param(uri, error);
321 sip_get_uri_query(const struct sip_uri *uri, int *error)
325 _uri = sip_check_get_param(uri, error);
345 sip_get_uri_path(const struct sip_uri *uri, int *error)
349 _uri = sip_check_get_param(uri, error);
369 sip_get_uri_regname(const struct sip_uri *uri, int *error)
373 _uri = sip_check_get_param(uri, error);
393 sip_is_uri_teluser(const struct sip_uri *uri)
397 if (uri == NULL)
400 _uri = (_sip_uri_t *)uri;
405 sip_get_uri_errflags(const struct sip_uri *uri, int *error)
409 _uri = sip_check_get_param(uri, error);