• Home
  • Raw
  • Download

Lines Matching refs:authp

874   struct auth *authp;  in Curl_http_input_auth()  local
878 authp = &data->state.authproxy; in Curl_http_input_auth()
882 authp = &data->state.authhost; in Curl_http_input_auth()
904 if((authp->avail & CURLAUTH_NEGOTIATE) || in Curl_http_input_auth()
907 authp->avail |= CURLAUTH_NEGOTIATE; in Curl_http_input_auth()
909 if(authp->picked == CURLAUTH_NEGOTIATE) { in Curl_http_input_auth()
930 if((authp->avail & CURLAUTH_NTLM) || in Curl_http_input_auth()
931 (authp->avail & CURLAUTH_NTLM_WB) || in Curl_http_input_auth()
934 authp->avail |= CURLAUTH_NTLM; in Curl_http_input_auth()
936 if(authp->picked == CURLAUTH_NTLM || in Curl_http_input_auth()
937 authp->picked == CURLAUTH_NTLM_WB) { in Curl_http_input_auth()
943 if(authp->picked == CURLAUTH_NTLM_WB) { in Curl_http_input_auth()
945 authp->avail &= ~CURLAUTH_NTLM; in Curl_http_input_auth()
947 authp->avail |= CURLAUTH_NTLM_WB; in Curl_http_input_auth()
968 if((authp->avail & CURLAUTH_DIGEST) != 0) in Curl_http_input_auth()
974 authp->avail |= CURLAUTH_DIGEST; in Curl_http_input_auth()
991 authp->avail |= CURLAUTH_BASIC; in Curl_http_input_auth()
992 if(authp->picked == CURLAUTH_BASIC) { in Curl_http_input_auth()
996 authp->avail = CURLAUTH_NONE; in Curl_http_input_auth()
1004 authp->avail |= CURLAUTH_BEARER; in Curl_http_input_auth()
1005 if(authp->picked == CURLAUTH_BEARER) { in Curl_http_input_auth()
1008 authp->avail = CURLAUTH_NONE; in Curl_http_input_auth()
3954 struct auth *authp = &data->state.authhost; in Curl_http_readwrite_headers() local
3955 if(authp->picked == CURLAUTH_NEGOTIATE) { in Curl_http_readwrite_headers()