Lines Matching defs:login
2584 * This is used to parse a login string for user name, password and options in
2599 * login [in] - The login string.
2600 * len [in] - The length of the login string.
2610 CURLcode Curl_parse_login_details(const char *login, const size_t len,
2626 psep = memchr(login, ':', len);
2630 osep = memchr(login, ';', len);
2634 (size_t)(osep && psep > osep ? osep - login : psep - login) :
2635 (osep ? (size_t)(osep - login) : len));
2638 (size_t)(login + len - psep)) - 1 : 0);
2641 (size_t)(login + len - osep)) - 1 : 0);
2672 memcpy(ubuf, login, ulen);
2725 * Override the login details from the URL with that in the CURLOPT_USERPWD
2835 * Set the login details so they're available in the connection
3510 /* Check for overridden login details and set them accordingly so that