• Home
  • Raw
  • Download

Lines Matching refs:authp

822   struct auth *authp;  in Curl_http_input_auth()  local
826 authp = &data->state.authproxy; in Curl_http_input_auth()
830 authp = &data->state.authhost; in Curl_http_input_auth()
852 if((authp->avail & CURLAUTH_NEGOTIATE) || in Curl_http_input_auth()
855 authp->avail |= CURLAUTH_NEGOTIATE; in Curl_http_input_auth()
857 if(authp->picked == CURLAUTH_NEGOTIATE) { in Curl_http_input_auth()
878 if((authp->avail & CURLAUTH_NTLM) || in Curl_http_input_auth()
879 (authp->avail & CURLAUTH_NTLM_WB) || in Curl_http_input_auth()
882 authp->avail |= CURLAUTH_NTLM; in Curl_http_input_auth()
884 if(authp->picked == CURLAUTH_NTLM || in Curl_http_input_auth()
885 authp->picked == CURLAUTH_NTLM_WB) { in Curl_http_input_auth()
891 if(authp->picked == CURLAUTH_NTLM_WB) { in Curl_http_input_auth()
893 authp->avail &= ~CURLAUTH_NTLM; in Curl_http_input_auth()
895 authp->avail |= CURLAUTH_NTLM_WB; in Curl_http_input_auth()
925 if((authp->avail & CURLAUTH_DIGEST) != 0) in Curl_http_input_auth()
931 authp->avail |= CURLAUTH_DIGEST; in Curl_http_input_auth()
948 authp->avail |= CURLAUTH_BASIC; in Curl_http_input_auth()
949 if(authp->picked == CURLAUTH_BASIC) { in Curl_http_input_auth()
953 authp->avail = CURLAUTH_NONE; in Curl_http_input_auth()
961 authp->avail |= CURLAUTH_BEARER; in Curl_http_input_auth()
962 if(authp->picked == CURLAUTH_BEARER) { in Curl_http_input_auth()
965 authp->avail = CURLAUTH_NONE; in Curl_http_input_auth()
3979 struct auth *authp = &data->state.authhost; in Curl_http_readwrite_headers() local
3980 if(authp->picked == CURLAUTH_NEGOTIATE) { in Curl_http_readwrite_headers()