• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/

Lines Matching refs:http

18 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
63 /* Short name of the scheme, such as "http" or "ftp". */
76 { "http", "http://", DEFAULT_HTTP_PORT, scm_has_query|scm_has_fragment },
315 Imagine Wget is asked to retrieve `http://abc.xyz/abc def'. Since
365 "http://abc.xyz/%20%3F%%36%31%25aa% a?a=%61+a%2Ba&b=b%26c%3Dc"
367 "http://abc.xyz/%20%3F%25%36%31%25aa%25%20a?a=%61+a%2Ba&b=b%26c%3Dc"
534 www.foo.com[:port]/dir/file -> http://www.foo.com[:port]/dir/file
535 www.foo.com[:port] -> http://www.foo.com[:port]
568 special case of http port number ("localhost:10000"). */
571 goto http;
579 http:
580 /* Just prepend "http://" to URL. */
581 ret = aprintf ("http://%s", url);
815 /* http://[::1]... */
855 /* http://host:12randomgarbage/blah */
895 /* http://user:pass@host */
1045 "http://host:port/foo/bar/baz;bullshit?querystring#uselessfragment",
1260 is *only* for Wget to work with buggy old CERN http
1263 http://foo/bar (bar being a directory), CERN server will
1264 not redirect it too http://foo/bar/ -- it will generate a
1504 http://server/dir1/dir2/file, this appends "/dir1/dir2".
1754 scheme = SCHEME_HTTP; /* use http semantics for rel links */
1833 /* uri_merge("http://old/foo", "//new/bar") -> "http://new/bar" */
1861 So, if BASE is "http://host/whatever/foo/bar", and LINK is
1863 "http://host/qux/xyzzy". */
1892 /* example: "http://foo" */
1900 /* example: "http://something/" */
1930 /* example: http://host" */
2077 are also similar if one is http (SCHEME_HTTP) and the other is https
2258 { "http://www.yoyodyne.com/path/", "somepage.html", false, "http://www.yoyodyne.com/path/somepage.html" },
2288 { "http://www.adomain.com/apath/", "http://www.adomain.com/apath/", true },
2289 { "http://www.adomain.com/apath/", "http://www.adomain.com/anotherpath/", false },
2290 { "http://www.adomain.com/apath/", "http://www.anotherdomain.com/path/", false },
2291 { "http://www.adomain.com/~path/", "http://www.adomain.com/%7epath/", true },
2292 { "http://www.adomain.com/longer-path/", "http://www.adomain.com/path/", false },
2293 { "http://www.adomain.com/path%2f", "http://www.adomain.com/path/", false },