Home
last modified time | relevance | path

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

/dports/www/wget2/wget2-2.0.0/unit-tests/
H A Dtest.c531 { "1.2.3.4", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "1.2.3.4", 80, NULL, NULL, NULL}, in test_iri_parse()
532 { "1.2.3.4:987", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "1.2.3.4", 987, NULL, NULL, NULL}, in test_iri_parse()
535 { "example.com", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "example.com", 80, NULL, NULL, NULL}, in test_iri_parse()
536 …{ "example.com:555", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "example.com", 555, NULL, NULL, NULL}, in test_iri_parse()
537 …{ "http://example.com", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "example.com", 80, NULL, NULL, NUL… in test_iri_parse()
538 …{ "http://example.com:", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "example.com", 80, NULL, NULL, NU… in test_iri_parse()
539 …{ "http://example.com:/", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "example.com", 80, "", NULL, NUL… in test_iri_parse()
540 …{ "http://example.com:80/", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "example.com", 80, "", NULL, N… in test_iri_parse()
544 …{ "http://example.com:80", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "example.com", 80, NULL, NULL, … in test_iri_parse()
545 …{ "http://example.com:81", NULL, WGET_IRI_SCHEME_HTTP, NULL, NULL, "example.com", 81, NULL, NULL, … in test_iri_parse()
[all …]
/dports/www/wget2/wget2-2.0.0/libwget/
H A Diri.c81 [WGET_IRI_SCHEME_HTTP] = { 80, "http" },
566 iri->scheme = WGET_IRI_SCHEME_HTTP; in wget_iri_parse()
567 iri->port = schemes[WGET_IRI_SCHEME_HTTP].port; in wget_iri_parse()
H A Dhttp.c637 if (iri->scheme == WGET_IRI_SCHEME_HTTP && http_proxies) { in wget_http_open()
/dports/www/wget2/wget2-2.0.0/examples/
H A Dcheck_url_types.c208 else if (canon_url->scheme == WGET_IRI_SCHEME_HTTP) { in html_parse()
/dports/www/wget2/wget2-2.0.0/src/
H A Dwget.c634 if (iri->scheme == WGET_IRI_SCHEME_HTTP) in queue_url_from_local()
637 if (iri->scheme == WGET_IRI_SCHEME_HTTP && config.https_enforce) { in queue_url_from_local()
815 if (iri->scheme == WGET_IRI_SCHEME_HTTP) in queue_url_from_remote()
825 …if (iri->scheme == WGET_IRI_SCHEME_HTTP && config.https_enforce && !(flags & URL_FLG_SKIPFALLBACK)… in queue_url_from_remote()
1596 if (mirror->iri->scheme == WGET_IRI_SCHEME_HTTP && config.https_enforce) { in establish_connection()
H A Doptions.c3381 wget_iri_set_defaultport(WGET_IRI_SCHEME_HTTP, config.default_http_port); in init()
/dports/www/wget2/wget2-2.0.0/include/wget/
H A Dwget.h1174 WGET_IRI_SCHEME_HTTP = 0, enumerator