/curl/src/ |
H A D | tool_findfile.c | 112 char *home = curl_getenv(conf_list[i].env); in findfile() local 113 if(home) { in findfile() 116 if(!home[0]) { in findfile() 117 curl_free(home); in findfile() 122 curl_free(home); in findfile() 125 home = c; in findfile() 131 curl_free(home); in findfile() 138 curl_free(home); in findfile() 147 char *home = pw->pw_dir; in findfile() local 148 if(home && home[0]) in findfile() [all …]
|
H A D | tool_ipfs.c | 80 char *home = getenv("HOME"); in ipfs_gateway() local 81 if(home && *home) in ipfs_gateway() 82 ipfs_path = aprintf("%s/.ipfs/", home); in ipfs_gateway()
|
/curl/tests/data/ |
H A D | test726 | 21 # Set a home that doesn't have a ".ipfs" folder. %PWD should be good. 22 # This is to prevent the automatic gateway detection from finding a gateway file in your home folde… 26 IPFS with no gateway URL (no environment or home file either)
|
H A D | test353 | 34 FTP home dir list singlecwd
|
/curl/tests/unit/ |
H A D | unit2604.c | 42 const char *home; member 89 for(i = 0; list[i].home; i++) { 92 CURLcode result = Curl_get_pathname(&cp, &path, list[i].home); 94 list[i].cp, list[i].home, list[i].result);
|
/curl/lib/ |
H A D | netrc.c | 351 char *home = NULL; in Curl_parsenetrc() local 354 home = homea; in Curl_parsenetrc() 361 home = pw.pw_dir; in Curl_parsenetrc() 369 home = pw->pw_dir; in Curl_parsenetrc() 376 home = homea; in Curl_parsenetrc() 381 if(!home) in Curl_parsenetrc() 385 filealloc = aprintf("%s%s.netrc", home, DIR_CHAR); in Curl_parsenetrc() 395 filealloc = aprintf("%s%s_netrc", home, DIR_CHAR); in Curl_parsenetrc()
|
/curl/docs/cmdline-opts/ |
H A D | netrc.md | 21 Make curl scan the *.netrc* file in the user's home directory for login name 26 variable "HOME" is used to find the home directory. 28 On Windows two filenames in the home directory are checked: *.netrc* and
|
H A D | insecure.md | 33 *known_hosts* is a file normally stored in the user's home directory in the
|
H A D | config.md | 78 7) Non-Windows: use getpwuid to find the home directory
|
/curl/docs/examples/ |
H A D | Makefile.example | 41 LDFLAGS = -L/home/dast/lib -L/usr/local/ssl/lib
|
/curl/.github/workflows/ |
H A D | http3-linux.yml | 98 path: /home/runner/quictls/build 107 path: /home/runner/gnutls/build 117 path: /home/runner/wolfssl/build 126 path: /home/runner/nghttp3/build 135 path: /home/runner/ngtcp2/build 144 path: /home/runner/nghttp2/build 345 path: /home/runner/quictls/build 356 path: /home/runner/gnutls/build 368 path: /home/runner/wolfssl/build 388 path: /home/runner/ngtcp2/build [all …]
|
H A D | linux.yml | 339 path: /home/runner/bearssl 360 path: /home/runner/libressl 379 path: /home/runner/wolfssl-all 400 path: /home/runner/wolfssl-opensslextra 421 path: /home/runner/mbedtls 444 path: /home/runner/openssl 462 path: /home/runner/quictls 480 path: /home/runner/msh3 499 path: /home/runner/awslc 521 path: /home/runner/rustls
|
/curl/docs/libcurl/opts/ |
H A D | CURLOPT_SSH_KEYDATA.md | 64 curl_easy_setopt(curl, CURLOPT_SSH_KNOWNHOSTS, "/home/user/known_hosts");
|
H A D | CURLOPT_NETRC_FILE.md | 33 for a .netrc file in the current user's home directory.
|
H A D | CURLOPT_SSH_KNOWNHOSTS.md | 59 "/home/clarkkent/.ssh/known_hosts");
|
H A D | CURLOPT_SSH_PRIVATE_KEYFILE.md | 63 "/home/clarkkent/.ssh/id_rsa");
|
H A D | CURLOPT_SSH_PUBLIC_KEYFILE.md | 59 "/home/clarkkent/.ssh/id_rsa.pub");
|
H A D | CURLOPT_HSTS.md | 73 curl_easy_setopt(curl, CURLOPT_HSTS, "/home/user/.hsts-cache");
|
H A D | CURLOPT_SSH_KEYFUNCTION.md | 141 curl_easy_setopt(curl, CURLOPT_SSH_KNOWNHOSTS, "/home/user/known_hosts");
|
/curl/docs/libcurl/ |
H A D | libcurl-env.md | 60 checked as the primary way to find the "current" home directory in which 66 checked as the secondary way to find the "current" home directory (on Windows
|
H A D | libcurl-security.md | 53 stored in a home directory that is NFS mounted or used on another network
|
/curl/ |
H A D | Dockerfile | 36 useradd --uid $UID --gid dev --shell /bin/bash --create-home dev
|
/curl/lib/vssh/ |
H A D | libssh2.c | 1316 char *home = curl_getenv("HOME"); in sftp_pkey_init() local 1320 if(home) { in sftp_pkey_init() 1322 sshc->rsa = aprintf("%s/.ssh/id_rsa", home); in sftp_pkey_init() 1327 sshc->rsa = aprintf("%s/.ssh/id_dsa", home); in sftp_pkey_init() 1334 free(home); in sftp_pkey_init()
|
/curl/docs/ |
H A D | FAQ | 52 3.20 How to SFTP from my user's home directory? 731 3.20 How to SFTP from my user's home directory? 734 work with. It means that if you do not specify that you want the user's home 737 To specify a file in your user's home directory, you need to use the correct
|
H A D | KNOWN_BUGS | 280 user's home directory is retrieved via curl_getenv in the current locale and
|