Lines Matching defs:content
71 bool Curl_auth_digest_get_pair(const char *str, char *value, char *content,
105 /* This signals the end of the content if we didn't get a starting
132 *content++ = *str;
137 *content = 0;
520 char content[DIGEST_MAX_CONTENT_LENGTH];
526 /* Extract a value=content pair */
527 if(Curl_auth_digest_get_pair(chlg, value, content, &chlg)) {
530 digest->nonce = strdup(content);
535 if(strcasecompare(content, "true")) {
542 digest->realm = strdup(content);
548 digest->opaque = strdup(content);
556 tmp = strdup(content);
592 digest->algorithm = strdup(content);
596 if(strcasecompare(content, "MD5-sess"))
598 else if(strcasecompare(content, "MD5"))
600 else if(strcasecompare(content, "SHA-256"))
602 else if(strcasecompare(content, "SHA-256-SESS"))
604 else if(strcasecompare(content, "SHA-512-256"))
606 else if(strcasecompare(content, "SHA-512-256-SESS"))
612 if(strcasecompare(content, "true")) {