Lines Matching defs:token
222 char *token;
234 token = strtok_r(tmp, ",", &tok_buf);
235 while(token) {
236 if(strcasecompare(token, DIGEST_QOP_VALUE_STRING_AUTH))
238 else if(strcasecompare(token, DIGEST_QOP_VALUE_STRING_AUTH_INT))
240 else if(strcasecompare(token, DIGEST_QOP_VALUE_STRING_AUTH_CONF))
243 token = strtok_r(NULL, ",", &tok_buf);
508 char *token = NULL;
560 token = strtok_r(tmp, ",", &tok_buf);
561 while(token) {
563 while(*token && ISBLANK(*token))
564 token++;
565 if(strcasecompare(token, DIGEST_QOP_VALUE_STRING_AUTH)) {
568 else if(strcasecompare(token, DIGEST_QOP_VALUE_STRING_AUTH_INT)) {
571 token = strtok_r(NULL, ",", &tok_buf);