/curl/docs/libcurl/opts/ |
H A D | CURLINFO_FTP_ENTRY_PATH.md | 17 CURLINFO_FTP_ENTRY_PATH - get entry path in FTP server 30 path of the entry path. That is the initial path libcurl ended up in when 53 /* extract the entry path */
|
H A D | CURLOPT_HSTS.md | 45 The HSTS cache is saved to and loaded from a text file with one entry per 50 [host] is the domain name for the entry and the name is dot-prefixed if it is 51 an entry valid for all subdomains to the name as well or only for the exact 54 [stamp] is the time (in UTC) when the entry expires and it uses the format
|
H A D | CURLOPT_RESOLVE.md | 58 The optional leading plus (`+`) specifies that the new entry should timeout. 62 If the DNS cache already has an entry for the given host+port pair, the new 63 entry overrides the former one. 73 The entry to remove must be prefixed with a dash, and the hostname and port 115 Support for providing multiple IP addresses per entry was added in 7.59.0.
|
H A D | CURLOPT_ALTSVC.md | 66 A text based file with one line per alt-svc entry and each line consists of 101 Expiration date and time of this entry within double quotes. The date format 106 Boolean (1 or 0) if "persist" was set for this entry
|
H A D | CURLOPT_HSTSWRITEFUNCTION.md | 34 size_t index; /* the provided entry's "index" or count */ 56 terminated. The *includeSubDomains* field is non-zero if the entry matches
|
H A D | CURLMOPT_PIPELINING_SITE_BL.md | 32 Pass a **hosts** array of char *, ending with a NULL entry. This is a list
|
H A D | CURLMOPT_PIPELINING_SERVER_BL.md | 32 Pass a **servers** array of char *, ending with a NULL entry. This is a list
|
/curl/lib/ |
H A D | asyn-thread.c | 505 struct Curl_dns_entry **entry, in thread_wait_resolv() argument 518 if(entry) in thread_wait_resolv() 526 if(entry) in thread_wait_resolv() 527 *entry = data->state.async.dns; in thread_wait_resolv() 574 struct Curl_dns_entry **entry) in Curl_resolver_wait_resolv() argument 576 return thread_wait_resolv(data, entry, TRUE); in Curl_resolver_wait_resolv() 585 struct Curl_dns_entry **entry) in Curl_resolver_is_resolved() argument 590 DEBUGASSERT(entry); in Curl_resolver_is_resolved() 591 *entry = NULL; in Curl_resolver_is_resolved() 611 *entry = data->state.async.dns; in Curl_resolver_is_resolved()
|
H A D | dynhds.c | 169 struct dynhds_entry *entry = NULL; in Curl_dynhds_add() local 178 entry = entry_new(name, namelen, value, valuelen, dynhds->opts); in Curl_dynhds_add() 179 if(!entry) in Curl_dynhds_add() 200 dynhds->hds[dynhds->hds_len++] = entry; in Curl_dynhds_add() 201 entry = NULL; in Curl_dynhds_add() 206 if(entry) in Curl_dynhds_add() 207 entry_free(entry); in Curl_dynhds_add()
|
H A D | multi.c | 3230 if(entry) { 3243 if(!entry) 3251 entry->readers--; 3255 entry->writers--; 3258 entry->readers++; 3261 entry->writers++; 3268 entry->users++; 3325 if(entry) { 3329 entry->users--; 3395 if(entry) { [all …]
|
H A D | file.c | 608 struct dirent *entry; in file_do() local 615 while((entry = readdir(dir))) { in file_do() 616 if(entry->d_name[0] != '.') { in file_do() 618 entry->d_name, strlen(entry->d_name)); in file_do()
|
H A D | hostip.c | 118 static void hostcache_unlink_entry(void *entry); 689 struct Curl_dns_entry **entry) in Curl_resolv() argument 703 *entry = NULL; in Curl_resolv() 852 *entry = dns; in Curl_resolv() 896 struct Curl_dns_entry **entry, in Curl_resolv_timeout() argument 914 *entry = NULL; in Curl_resolv_timeout() 929 return Curl_resolv(data, hostname, port, TRUE, entry); in Curl_resolv_timeout() 993 rc = Curl_resolv(data, hostname, port, TRUE, entry); in Curl_resolv_timeout() 1068 static void hostcache_unlink_entry(void *entry) in hostcache_unlink_entry() argument 1070 struct Curl_dns_entry *dns = (struct Curl_dns_entry *) entry; in hostcache_unlink_entry()
|
H A D | asyn-ares.c | 441 struct Curl_dns_entry **entry) in Curl_resolver_wait_resolv() argument 447 DEBUGASSERT(entry); in Curl_resolver_wait_resolv() 448 *entry = NULL; /* clear on entry */ in Curl_resolver_wait_resolv() 486 result = Curl_resolver_is_resolved(data, entry); in Curl_resolver_wait_resolv() 513 if(entry) in Curl_resolver_wait_resolv() 514 *entry = data->state.async.dns; in Curl_resolver_wait_resolv()
|
H A D | http_aws_sigv4.c | 518 int entry = 0; in canon_query() local 529 entry++; in canon_query() 540 } while(entry < MAX_QUERYPAIRS); in canon_query() 541 if(entry == MAX_QUERYPAIRS) { in canon_query() 547 qsort(&array[0], entry, sizeof(struct pair), compare_func); in canon_query() 550 for(i = 0; !result && (i < entry); i++, ap++) { in canon_query() 560 if(!result && i < entry - 1) { in canon_query()
|
/curl/docs/examples/ |
H A D | hsts-preload.c | 32 struct entry { struct 37 static const struct entry preload_hosts[] = { argument
|
/curl/lib/vtls/ |
H A D | schannel_verify.c | 395 const CERT_ALT_NAME_ENTRY *entry = &alt_name_info->rgAltEntry[i]; in cert_get_name_string() local 399 if(entry->dwAltNameChoice != CERT_ALT_NAME_DNS_NAME) { in cert_get_name_string() 402 if(!entry->pwszDNSName) { in cert_get_name_string() 406 current_length = wcslen(entry->pwszDNSName) + 1; in cert_get_name_string() 416 dns_w = entry->pwszDNSName; in cert_get_name_string() 559 PCERT_ALT_NAME_ENTRY entry = &alt_name_info->rgAltEntry[i]; in Curl_verify_host() local 560 if(entry->dwAltNameChoice == CERT_ALT_NAME_IP_ADDRESS) { in Curl_verify_host() 561 if(entry->IPAddress.cbData == p->size) { in Curl_verify_host() 562 if(!memcmp(entry->IPAddress.pbData, &p->bData, in Curl_verify_host() 563 entry->IPAddress.cbData)) { in Curl_verify_host()
|
H A D | rustls.c | 441 const struct rustls_supported_ciphersuite *entry; in cr_get_selected_ciphers() local 451 entry = rustls_default_crypto_provider_ciphersuites_get(j); in cr_get_selected_ciphers() 452 if(rustls_supported_ciphersuite_protocol_version(entry) != in cr_get_selected_ciphers() 456 selected[count++] = entry; in cr_get_selected_ciphers() 475 if(rustls_supported_ciphersuite_get_suite(entry) == id) in cr_get_selected_ciphers() 489 for(i = 0; i < count && selected[i] != entry; i++); in cr_get_selected_ciphers() 497 selected[count++] = entry; in cr_get_selected_ciphers() 508 entry = rustls_default_crypto_provider_ciphersuites_get(j); in cr_get_selected_ciphers() 509 if(rustls_supported_ciphersuite_protocol_version(entry) == in cr_get_selected_ciphers() 514 for(i = 0; i < count && selected[i] != entry; i++); in cr_get_selected_ciphers() [all …]
|
H A D | cipher_suite.c | 734 const char *entry, *cur; in cs_str_to_zip() local 755 for(idx = 1, entry = cs_txt + 1; idx < CS_TXT_LEN; idx++) { in cs_str_to_zip() 756 size_t elen = strlen(entry); in cs_str_to_zip() 757 if(elen == len && strncasecompare(entry, cur, len)) in cs_str_to_zip() 759 entry += elen + 1; in cs_str_to_zip() 782 const char *entry; in cs_zip_to_str() local 805 for(idx = 1, entry = cs_txt + 1; idx < indexes[i]; idx++) { in cs_zip_to_str() 806 size_t elen = strlen(entry); in cs_zip_to_str() 807 entry += elen + 1; in cs_zip_to_str() 812 r = msnprintf(&buf[len], buf_size - len, "%c%s", separator, entry); in cs_zip_to_str() [all …]
|
/curl/tests/data/ |
H A D | test1557 | 21 Removing easy handle that's in the pending connections list doesn't leave behind a dangling entry
|
/curl/tests/libtest/ |
H A D | lib1915.c | 31 struct entry { struct 36 static const struct entry preload_hosts[] = { argument
|
/curl/packages/OS400/ |
H A D | os400sys.c | 661 Curl_ldap_get_values_len_a(void *ld, LDAPMessage *entry, const char *attr) in Curl_ldap_get_values_len_a() argument 682 result = ldap_get_values_len(ld, entry, cp); in Curl_ldap_get_values_len_a() 698 Curl_ldap_get_dn_a(void *ld, LDAPMessage *entry) in Curl_ldap_get_dn_a() argument 704 cp = ldap_get_dn(ld, entry); in Curl_ldap_get_dn_a() 729 LDAPMessage *entry, BerElement **berptr) in Curl_ldap_first_attribute_a() argument 735 cp = ldap_first_attribute(ld, entry, berptr); in Curl_ldap_first_attribute_a() 760 LDAPMessage *entry, BerElement *berptr) in Curl_ldap_next_attribute_a() argument 766 cp = ldap_next_attribute(ld, entry, berptr); in Curl_ldap_next_attribute_a()
|
/curl/packages/vms/ |
H A D | generate_vax_transfer.com | 226 ; case transfer vectors, with exact case entry symbols. 229 ; vectors for both upper and exact case, and then additional entry points 238 ; Macro to generate a transfer vector entry 258 ; Macro to reserve a spare entry.
|
/curl/docs/cmdline-opts/ |
H A D | hsts.md | 25 entry has an individual life time after which the upgrade is no longer
|
H A D | resolve.md | 34 By prefixing the host with a '+' you can make the entry time out after curl's
|
/curl/docs/libcurl/ |
H A D | curl_multi_get_handles.md | 35 but with only a single NULL pointer entry.
|