Lines Matching refs:whatptr
490 const char *whatptr; in Curl_cookie_add() local
530 whatptr = what; in Curl_cookie_add()
531 while(*whatptr && ISBLANK(*whatptr)) in Curl_cookie_add()
532 whatptr++; in Curl_cookie_add()
555 co->value = strdup(whatptr); in Curl_cookie_add()
589 strstore(&co->path, whatptr); in Curl_cookie_add()
607 if('.' == whatptr[0]) in Curl_cookie_add()
608 whatptr++; /* ignore preceding dot */ in Curl_cookie_add()
616 if(bad_domain(whatptr)) in Curl_cookie_add()
620 is_ip = isip(domain ? domain : whatptr); in Curl_cookie_add()
623 || (is_ip && !strcmp(whatptr, domain)) in Curl_cookie_add()
624 || (!is_ip && tailmatch(whatptr, domain))) { in Curl_cookie_add()
625 strstore(&co->domain, whatptr); in Curl_cookie_add()
640 whatptr); in Curl_cookie_add()
644 strstore(&co->version, whatptr); in Curl_cookie_add()
660 strstore(&co->maxage, whatptr); in Curl_cookie_add()
667 strstore(&co->expirestr, whatptr); in Curl_cookie_add()