Lines Matching defs:auth
1006 unsigned long auth = va_arg(param, unsigned long);
1008 if(auth == CURLAUTH_NONE) {
1009 data->set.httpauth = auth;
1015 data->state.authhost.iestyle = !!(auth & CURLAUTH_DIGEST_IE);
1017 if(auth & CURLAUTH_DIGEST_IE) {
1018 auth |= CURLAUTH_DIGEST; /* set standard digest bit */
1019 auth &= ~CURLAUTH_DIGEST_IE; /* unset ie digest bit */
1024 auth &= ~CURLAUTH_NTLM; /* no NTLM support */
1025 auth &= ~CURLAUTH_NTLM_WB; /* no NTLM_WB support */
1027 auth &= ~CURLAUTH_NTLM_WB; /* no NTLM_WB support */
1030 auth &= ~CURLAUTH_NEGOTIATE; /* no Negotiate (SPNEGO) auth without
1034 /* check if any auth bit lower than CURLAUTH_ONLY is still set */
1038 if(auth & (1UL << bitcheck++)) {
1046 data->set.httpauth = auth;
1088 unsigned long auth = va_arg(param, unsigned long);
1090 if(auth == CURLAUTH_NONE) {
1091 data->set.proxyauth = auth;
1097 data->state.authproxy.iestyle = !!(auth & CURLAUTH_DIGEST_IE);
1099 if(auth & CURLAUTH_DIGEST_IE) {
1100 auth |= CURLAUTH_DIGEST; /* set standard digest bit */
1101 auth &= ~CURLAUTH_DIGEST_IE; /* unset ie digest bit */
1105 auth &= ~CURLAUTH_NTLM; /* no NTLM support */
1106 auth &= ~CURLAUTH_NTLM_WB; /* no NTLM_WB support */
1108 auth &= ~CURLAUTH_NTLM_WB; /* no NTLM_WB support */
1111 auth &= ~CURLAUTH_NEGOTIATE; /* no Negotiate (SPNEGO) auth without
1115 /* check if any auth bit lower than CURLAUTH_ONLY is still set */
1119 if(auth & (1UL << bitcheck++)) {
1127 data->set.proxyauth = auth;
1314 * Set a specific auth for FTP-SSL transfers.
2692 /* Set the SMTP auth originator */