• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/lib/

Lines Matching refs:picked

281  * return TRUE if one was picked
285 bool picked;
288 picked = TRUE;
293 pick->picked = CURLAUTH_GSSNEGOTIATE;
295 pick->picked = CURLAUTH_DIGEST;
297 pick->picked = CURLAUTH_NTLM;
299 pick->picked = CURLAUTH_NTLM_WB;
301 pick->picked = CURLAUTH_BASIC;
303 pick->picked = CURLAUTH_PICKNONE; /* we select to use nothing */
304 picked = FALSE;
308 return picked;
385 if((data->state.authproxy.picked == CURLAUTH_NTLM) ||
386 (data->state.authhost.picked == CURLAUTH_NTLM) ||
387 (data->state.authproxy.picked == CURLAUTH_NTLM_WB) ||
388 (data->state.authhost.picked == CURLAUTH_NTLM_WB)) {
430 * picked.
531 if((authstatus->picked == CURLAUTH_GSSNEGOTIATE) &&
543 if(authstatus->picked == CURLAUTH_NTLM) {
552 if(authstatus->picked == CURLAUTH_NTLM_WB) {
561 if(authstatus->picked == CURLAUTH_DIGEST) {
572 if(authstatus->picked == CURLAUTH_BASIC) {
641 if(authhost->want && !authhost->picked)
642 /* The app has selected one or more methods, but none has been picked
643 so far by a server round-trip. Then we set the picked one to the
645 authhost->picked = authhost->want;
647 if(authproxy->want && !authproxy->picked)
648 /* The app has selected one or more methods, but none has been picked so
649 far by a proxy round-trip. Then we set the picked one to the want one,
651 authproxy->picked = authproxy->want;
729 * ->picked is first set to the 'want' value (one or more bits) before the
744 if(authp->picked == CURLAUTH_GSSNEGOTIATE) {
774 if(authp->picked == CURLAUTH_NTLM ||
775 authp->picked == CURLAUTH_NTLM_WB) {
776 /* NTLM authentication is picked and activated */
782 if(authp->picked == CURLAUTH_NTLM_WB) {
838 if(authp->picked == CURLAUTH_BASIC) {
2894 * use. It will set 'newurl' if an auth method was picked. */