| 2001 | } |
| 2002 | |
| 2003 | struct curl_slist *http_copy_default_headers(void) |
| 2004 | { |
| 2005 | struct curl_slist *headers = NULL; |
| 2006 | const struct string_list_item *item; |
| 2007 | |
| 2008 | for_each_string_list_item(item, &extra_http_headers) |
| 2009 | headers = curl_slist_append(headers, item->string); |
| 2010 | |
| 2011 | return headers; |
| 2012 | } |
| 2013 | |
| 2014 | static CURLcode curlinfo_strbuf(CURL *curl, CURLINFO info, struct strbuf *buf) |
| 2015 | { |
no outgoing calls
no test coverage detected