Lines Matching defs:res
35 CURLcode res;
53 res = curl_easy_perform(curl);
57 return res;
87 CURLcode res;
113 res = send_wrong_password(curl, url, 100, main_auth_scheme);
114 if(res != CURLE_OK)
117 res = send_right_password(curl, url, 200, fallback_auth_scheme);
118 if(res != CURLE_OK)
131 res = send_wrong_password(curl, url, 300, main_auth_scheme);
132 if(res != CURLE_OK)
135 res = send_wrong_password(curl, url, 400, fallback_auth_scheme);
136 if(res != CURLE_OK)
139 res = send_right_password(curl, url, 500, fallback_auth_scheme);
140 if(res != CURLE_OK)
148 return (int)res;