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 D | test.c | 531 { "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 D | iri.c | 81 [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 D | http.c | 637 if (iri->scheme == WGET_IRI_SCHEME_HTTP && http_proxies) { in wget_http_open()
|
/dports/www/wget2/wget2-2.0.0/examples/ |
H A D | check_url_types.c | 208 else if (canon_url->scheme == WGET_IRI_SCHEME_HTTP) { in html_parse()
|
/dports/www/wget2/wget2-2.0.0/src/ |
H A D | wget.c | 634 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 D | options.c | 3381 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 D | wget.h | 1174 WGET_IRI_SCHEME_HTTP = 0, enumerator
|