| 1986 | } |
| 1987 | |
| 1988 | int run_one_slot(struct active_request_slot *slot, |
| 1989 | struct slot_results *results) |
| 1990 | { |
| 1991 | slot->results = results; |
| 1992 | |
| 1993 | if (!start_active_slot(slot)) { |
| 1994 | xsnprintf(curl_errorstr, sizeof(curl_errorstr), |
| 1995 | "failed to start HTTP request"); |
| 1996 | return HTTP_START_FAILED; |
| 1997 | } |
| 1998 | |
| 1999 | run_active_slot(slot); |
| 2000 | return handle_curl_result(results); |
| 2001 | } |
| 2002 | |
| 2003 | struct curl_slist *http_copy_default_headers(void) |
| 2004 | { |
no test coverage detected