Home
last modified time | relevance | path

Searched refs:uri_path (Results 1 – 1 of 1) sorted by relevance

/external/curl/lib/
Dcookie.c172 char *uri_path = NULL; in pathmatch() local
183 uri_path = strdup(request_uri); in pathmatch()
184 if(!uri_path) in pathmatch()
186 pos = strchr(uri_path, '?'); in pathmatch()
191 if(0 == strlen(uri_path) || uri_path[0] != '/') { in pathmatch()
192 free(uri_path); in pathmatch()
193 uri_path = strdup("/"); in pathmatch()
194 if(!uri_path) in pathmatch()
207 uri_path_len = strlen(uri_path); in pathmatch()
215 if(strncmp(cookie_path, uri_path, cookie_path_len)) { in pathmatch()
[all …]