• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/

Lines Matching defs:picked

291  * return TRUE if one was picked
295 bool picked;
298 picked = TRUE;
303 pick->picked = CURLAUTH_GSSNEGOTIATE;
305 pick->picked = CURLAUTH_DIGEST;
307 pick->picked = CURLAUTH_NTLM;
309 pick->picked = CURLAUTH_NTLM_WB;
311 pick->picked = CURLAUTH_BASIC;
313 pick->picked = CURLAUTH_PICKNONE; /* we select to use nothing */
314 picked = FALSE;
318 return picked;
395 if((data->state.authproxy.picked == CURLAUTH_NTLM) ||
396 (data->state.authhost.picked == CURLAUTH_NTLM) ||
397 (data->state.authproxy.picked == CURLAUTH_NTLM_WB) ||
398 (data->state.authhost.picked == CURLAUTH_NTLM_WB)) {
442 * picked.
543 if((authstatus->picked == CURLAUTH_GSSNEGOTIATE) &&
555 if(authstatus->picked == CURLAUTH_NTLM) {
564 if(authstatus->picked == CURLAUTH_NTLM_WB) {
573 if(authstatus->picked == CURLAUTH_DIGEST) {
584 if(authstatus->picked == CURLAUTH_BASIC) {
653 if(authhost->want && !authhost->picked)
654 /* The app has selected one or more methods, but none has been picked
655 so far by a server round-trip. Then we set the picked one to the
657 authhost->picked = authhost->want;
659 if(authproxy->want && !authproxy->picked)
660 /* The app has selected one or more methods, but none has been picked so
661 far by a proxy round-trip. Then we set the picked one to the want one,
663 authproxy->picked = authproxy->want;
733 * ->picked is first set to the 'want' value (one or more bits) before the
748 if(authp->picked == CURLAUTH_GSSNEGOTIATE) {
778 if(authp->picked == CURLAUTH_NTLM ||
779 authp->picked == CURLAUTH_NTLM_WB) {
780 /* NTLM authentication is picked and activated */
786 if(authp->picked == CURLAUTH_NTLM_WB) {
842 if(authp->picked == CURLAUTH_BASIC) {
2976 * use. It will set 'newurl' if an auth method was picked. */