Lines Matching refs:auth
79 char *ptr = strstr(qop, "auth");
80 char *end = ptr + strlen("auth");
84 av_strlcpy(qop, "auth", size);
188 if (!strcmp(digest->qop, "auth") || !strcmp(digest->qop, "auth-int")) {
197 if (!strcmp(digest->qop, "") || !strcmp(digest->qop, "auth")) {
198 } else if (!strcmp(digest->qop, "auth-int")) {
199 /* qop=auth-int not supported */
240 char *ff_http_auth_create_response(HTTPAuthState *state, const char *auth,
245 /* Clear the stale flag, we assume the auth is ok now. It is reset
248 if (!auth || !strchr(auth, ':'))
253 char *ptr, *decoded_auth = ff_urldecode(auth, 0);
273 char *username = ff_urldecode(auth, 0), *password;