OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:purl
(Results
1 - 4
of
4
) sorted by relevancy
/src/share/examples/refuse/ian/libfetch/
ftp.c
908
_ftp_authenticate(conn_t *conn, struct url *url, struct url *
purl
)
924
if (
purl
&& url->port == _fetch_default_port(url->scheme))
926
else if (
purl
)
956
_ftp_connect(struct url *url, struct url *
purl
, const char *flags)
974
purl
= NULL;
977
if (
purl
) {
979
conn = _fetch_connect(
purl
->host,
purl
->port, af, verbose);
983
purl
= NULL;
996
if ((e = _ftp_authenticate(conn, url,
purl
)) != FTP_LOGGED_IN
1072
struct url *
purl
;
local
[
all
...]
http.c
680
_http_connect(struct url *URL, struct url *
purl
, const char *flags)
700
if (
purl
&& strcasecmp(URL->scheme, SCHEME_HTTPS) != 0) {
701
URL =
purl
;
735
struct url *
purl
;
local
741
*p && (
purl
= fetchParseURL(p))) {
742
if (!*
purl
->scheme)
743
strcpy(
purl
->scheme, SCHEME_HTTP);
744
if (!
purl
->port)
745
purl
->port = _fetch_default_proxy_port(
purl
->scheme)
[
all
...]
/src/external/bsd/fetch/dist/libfetch/
ftp.c
988
ftp_authenticate(conn_t *conn, struct url *url, struct url *
purl
)
1004
if (
purl
&& url->port == fetch_default_port(url->scheme))
1006
else if (
purl
)
1038
ftp_connect(struct url *url, struct url *
purl
, const char *flags)
1056
purl
= NULL;
1059
if (
purl
) {
1062
if (!
purl
->port)
1063
purl
->port = fetch_default_port(
purl
->scheme);
1065
conn = fetch_connect(
purl
, af, verbose)
1112
struct url *
purl
;
local
[
all
...]
http.c
725
http_connect(struct url *URL, struct url *
purl
, const char *flags, int *cached)
752
curl = (
purl
!= NULL) ?
purl
: URL;
753
if (
purl
&& strcasecmp(URL->scheme, SCHEME_HTTPS) != 0) {
754
URL =
purl
;
769
if (strcasecmp(URL->scheme, SCHEME_HTTPS) == 0 &&
purl
) {
775
if (*
purl
->user || *
purl
->pwd)
777
purl
->user,
purl
->pwd)
824
struct url *
purl
;
local
[
all
...]
Completed in 49 milliseconds
Indexes created Wed Mar 04 15:26:31 UTC 2026