Home
last modified time | relevance | path

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

/dports/ftp/wget/wget-1.21.2/src/
H A Dcookies.c371 cookie->attr = strdupdelim (name.b, name.e); in parse_set_cookie()
372 cookie->value = strdupdelim (value.b, value.e); in parse_set_cookie()
387 cookie->domain = strdupdelim (value.b, value.e); in parse_set_cookie()
394 cookie->path = strdupdelim (value.b, value.e); in parse_set_cookie()
792 cookie->path = strdupdelim (path, trailing_slash + 1); in cookie_handle_set_cookie()
1308 cookie->attr = strdupdelim (name_b, name_e); in cookie_jar_load()
1309 cookie->value = strdupdelim (value_b, value_e); in cookie_jar_load()
1310 cookie->path = strdupdelim (path_b, path_e); in cookie_jar_load()
1327 cookie->domain = strdupdelim (domain_b, domain_e); in cookie_jar_load()
1508 char *n = strdupdelim (name.b, name.e); in test_cookies()
[all …]
H A Durl.c555 *passwd = strdupdelim (colon + 1, end); in parse_credentials()
564 *user = strdupdelim (beg, userend); in parse_credentials()
907 u->host = strdupdelim (host_b, host_e); in url_parse()
912 u->path = strdupdelim (path_b, path_e); in url_parse()
952 u->params = strdupdelim (params_b, params_e); in url_parse()
954 u->query = strdupdelim (query_b, query_e); in url_parse()
956 u->fragment = strdupdelim (fragment_b, fragment_e); in url_parse()
1044 *dir = strdupdelim (path, last_slash); in split_path()
1258 t = strdupdelim (path, p); in mkalldirs()
1804 fname_len_check = strdupdelim (u_file, u_file + strlen (u_file)); in url_file_name()
[all …]
H A Dutils.h71 char *strdupdelim (const char *, const char *);
H A Dhtml-url.c731 char *url_text = strdupdelim (srcset + url_start, in tag_handle_img()
924 url_text = strdupdelim (line_beg, line_end); in get_urls_file()
H A Diri.c78 charset = strdupdelim (str, end); in parse_charset()
H A Dutils.c234 strdupdelim (const char *beg, const char *end) in strdupdelim() function
266 res[i] = strdupdelim (p, s); in sepstring()
278 res[i] = strdupdelim (p, s); in sepstring()
2659 p = path ? strdupdelim (path, path + length) : strdup (""); in get_max_length()
H A Dres.c141 pp.path = strdupdelim (path_b, path_e); in add_path()
H A Dlog.c200 ln->malloced_line = strdupdelim (start, end); in saved_append_1()
H A Dhttp.c774 return strdupdelim (b, e); in resp_header_strdup()
837 *message = strdupdelim (p, end); in resp_status()
1279 *outFilename = strdupdelim (value.b, value.e); in parse_content_disposition()
1319 c_max_age = strdupdelim (value.b, value.e); in parse_strict_transport_security()
5100 *options[i].variable = strdupdelim (value.b, value.e); in digest_authentication_encode()
H A Dinit.c884 *com = strdupdelim (cmdstart, cmdend); in parse_line()
885 *val = strdupdelim (valstart, valend); in parse_line()
/dports/multimedia/motion/motion-release-4.3.2/src/
H A Dnetcam_wget.c258 char *strdupdelim(const char *beg, const char *end) in strdupdelim() function
282 *result = strdupdelim (hdr, p); in http_process_type()
H A Dnetcam_wget.h76 char *strdupdelim(const char *, const char *);
/dports/ftp/wget/wget-1.21.2/
H A DChangeLog3909 * src/utils.c (strdupdelim): Explicitely check beg and end for NULL,
22831 strdupdelim().
24231 * src/http.c (extract_header_attr): Use strdupdelim().
27347 (same_host): Replaced realloc() with strdupdelim(), made
27577 * src/nmalloc.c (strdupdelim): New function.