• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/

Lines Matching defs:domain

63     Set-cookie: PRODUCTINFO=webxpress; domain=.fidelity.com; path=/; secure
65 domain=.fidelity.com; path=/ftgw; secure
67 domain=.fidelity.com; path=/; secure
69 domain=.fidelity.com; path=/; secure
71 domain=.fidelity.com; path=/; secure
73 domain=.fidelity.com; path=/; secure
76 13-Jun-1988 03:04:55 GMT; domain=.fidelity.com; path=/; secure
106 if(co->domain)
107 free(co->domain);
342 const char *domain, /* default domain */
441 else if(Curl_raw_equal("domain", name)) {
442 /* Now, we make sure that our host is within the given domain,
443 or the given domain is not valid and thus cannot be set. */
448 if(!domain || tailmatch(whatptr, domain)) {
452 strstore(&co->domain, tailptr); /* don't prefix w/dots
454 if(!co->domain) {
458 co->tailmatch=TRUE; /* we always do that if the domain name was
462 /* we did not get a tailmatch and then the attempted set domain
463 is not a domain to which the current host belongs. Mark as
466 infof(data, "skipped cookie with bad tailmatch domain: %s\n",
557 if(!badcookie && !co->domain) {
558 if(domain) {
559 /* no domain was given in the header line, set the default */
560 co->domain=strdup(domain);
561 if(!co->domain)
613 marked with httpOnly after the domain name are not accessible
647 co->domain = strdup(ptr);
648 if(!co->domain)
656 domain can access the variable. This value is set automatically by
657 the browser, depending on the value you set for the domain.
660 .domain.com and to false when the domain is complete www.domain.com
739 the same domain and path as this */
750 if(clist->domain && co->domain) {
751 if(Curl_raw_equal(clist->domain, co->domain))
755 else if(!clist->domain && !co->domain)
793 if(clist->domain)
794 free(clist->domain);
827 infof(data, "%s cookie %s=\"%s\" for domain %s, path %s, "
830 co->domain, co->path, co->expires);
935 /* 2 - compare cookie domain lengths */
936 l1 = c1->domain ? strlen(c1->domain) : 0;
937 l2 = c2->domain ? strlen(c2->domain) : 0;
987 /* now check if the domain is correct */
988 if(!co->domain ||
989 (co->tailmatch && tailmatch(co->domain, host)) ||
990 (!co->tailmatch && Curl_raw_equal(host, co->domain)) ) {
991 /* the right part of the host matches the domain stuff in the
1181 "%s%s\t" /* domain */
1191 (co->tailmatch && co->domain && co->domain[0] != '.')? ".":"",
1192 co->domain?co->domain:"unknown",