Lines Matching defs:user
111 * This is used to test if the specified user contains a Windows domain name as
118 * Note: The user name may be empty when using a GSS-API library or Windows
119 * SSPI as the user and domain are either obtained from the credentials cache
120 * when using GSS-API or via the currently logged in user's credentials when
125 * user [in] - The user name.
129 bool Curl_auth_user_contains_domain(const char *user)
133 if(user && *user) {
135 char *p = strpbrk(user, "\\/@");
137 valid = (p != NULL && p > user && p < user + strlen(user) - 1 ? TRUE :
143 currently logged in user from Windows */