Lines Matching refs:url
79 #define WGET_IS_HTTP (strncmp(TT.url, "http://", 7) == 0)
80 #define WGET_IS_HTTPS (WGET_SSL && (strncmp(TT.url, "https://", 8) == 0))
87 char *url;
104 static void wget_info(char *url, char **host, char **port, char **path)
106 *host = strafter(url, "://");
281 TT.url = xstrdup(toys.optargs[0]);
286 wget_info(TT.url, &host, &port, &path);
318 free(TT.url);
319 TT.url = wget_redirect(toybuf);
387 free(TT.url);