Home | History | Annotate | Download | only in lib

Lines Matching defs:picked

325  * return TRUE if one was picked
329 bool picked;
332 picked = TRUE;
337 pick->picked = CURLAUTH_NEGOTIATE;
339 pick->picked = CURLAUTH_DIGEST;
341 pick->picked = CURLAUTH_NTLM;
343 pick->picked = CURLAUTH_NTLM_WB;
345 pick->picked = CURLAUTH_BASIC;
347 pick->picked = CURLAUTH_PICKNONE; /* we select to use nothing */
348 picked = FALSE;
352 return picked;
435 if((data->state.authproxy.picked == CURLAUTH_NTLM) ||
436 (data->state.authhost.picked == CURLAUTH_NTLM) ||
437 (data->state.authproxy.picked == CURLAUTH_NTLM_WB) ||
438 (data->state.authhost.picked == CURLAUTH_NTLM_WB)) {
483 * picked.
584 if((authstatus->picked == CURLAUTH_NEGOTIATE) &&
596 if(authstatus->picked == CURLAUTH_NTLM) {
605 if(authstatus->picked == CURLAUTH_NTLM_WB) {
614 if(authstatus->picked == CURLAUTH_DIGEST) {
625 if(authstatus->picked == CURLAUTH_BASIC) {
695 if(authhost->want && !authhost->picked)
696 /* The app has selected one or more methods, but none has been picked
697 so far by a server round-trip. Then we set the picked one to the
699 authhost->picked = authhost->want;
701 if(authproxy->want && !authproxy->picked)
702 /* The app has selected one or more methods, but none has been picked so
703 far by a proxy round-trip. Then we set the picked one to the want one,
705 authproxy->picked = authproxy->want;
778 * ->picked is first set to the 'want' value (one or more bits) before the
790 if(authp->picked == CURLAUTH_NEGOTIATE) {
814 if(authp->picked == CURLAUTH_NTLM ||
815 authp->picked == CURLAUTH_NTLM_WB) {
816 /* NTLM authentication is picked and activated */
821 if(authp->picked == CURLAUTH_NTLM_WB) {
876 if(authp->picked == CURLAUTH_BASIC) {
2340 switch (data->state.authproxy.picked) {
3143 * use. It will set 'newurl' if an auth method was picked. */