Lines Matching defs:picked
362 * return TRUE if one was picked
366 bool picked;
369 picked = TRUE;
374 pick->picked = CURLAUTH_NEGOTIATE;
377 pick->picked = CURLAUTH_BEARER;
381 pick->picked = CURLAUTH_DIGEST;
384 pick->picked = CURLAUTH_NTLM;
386 pick->picked = CURLAUTH_NTLM_WB;
389 pick->picked = CURLAUTH_BASIC;
393 pick->picked = CURLAUTH_AWS_SIGV4;
396 pick->picked = CURLAUTH_PICKNONE; /* we select to use nothing */
397 picked = FALSE;
401 return picked;
480 if((data->state.authproxy.picked == CURLAUTH_NTLM) ||
481 (data->state.authhost.picked == CURLAUTH_NTLM) ||
482 (data->state.authproxy.picked == CURLAUTH_NTLM_WB) ||
483 (data->state.authhost.picked == CURLAUTH_NTLM_WB)) {
510 if((data->state.authproxy.picked == CURLAUTH_NEGOTIATE) ||
511 (data->state.authhost.picked == CURLAUTH_NEGOTIATE)) {
558 * picked.
585 if(data->state.authhost.picked == CURLAUTH_NTLM &&
665 if(authstatus->picked == CURLAUTH_AWS_SIGV4) {
674 if(authstatus->picked == CURLAUTH_NEGOTIATE) {
683 if(authstatus->picked == CURLAUTH_NTLM) {
692 if(authstatus->picked == CURLAUTH_NTLM_WB) {
701 if(authstatus->picked == CURLAUTH_DIGEST) {
713 if(authstatus->picked == CURLAUTH_BASIC) {
734 if(authstatus->picked == CURLAUTH_BEARER) {
821 if(authhost->want && !authhost->picked)
822 /* The app has selected one or more methods, but none has been picked
823 so far by a server round-trip. Then we set the picked one to the
825 authhost->picked = authhost->want;
827 if(authproxy->want && !authproxy->picked)
828 /* The app has selected one or more methods, but none has been picked so
829 far by a proxy round-trip. Then we set the picked one to the want one,
831 authproxy->picked = authproxy->want;
953 * ->picked is first set to the 'want' value (one or more bits) before the
967 if(authp->picked == CURLAUTH_NEGOTIATE) {
994 if(authp->picked == CURLAUTH_NTLM ||
995 authp->picked == CURLAUTH_NTLM_WB) {
996 /* NTLM authentication is picked and activated */
1001 if(authp->picked == CURLAUTH_NTLM_WB) {
1052 if(authp->picked == CURLAUTH_BASIC) {
1068 if(authp->picked == CURLAUTH_BEARER) {
3664 if(authp->picked == CURLAUTH_NEGOTIATE) {
4184 * use. It will set 'newurl' if an auth method was picked. */