Lines Matching refs:list
30 Pass a pointer to a linked list of *aliases* to be treated as valid HTTP 200
34 of such. By including this string in your list of aliases, the response gets
37 The linked list should be a fully valid list of struct curl_slist structs, and
38 be properly filled in. Use curl_slist_append(3) to create the list and
39 curl_slist_free_all(3) to clean up an entire list.
44 Using this option multiple times makes the last set list override the previous
47 libcurl does not copy the list, it needs to be kept around until after the
63 struct curl_slist *list;
66 list = curl_slist_append(NULL, "ICY 200 OK");
67 list = curl_slist_append(list, "WEIRDO 99 FINE");
69 curl_easy_setopt(curl, CURLOPT_HTTP200ALIASES, list);
71 curl_slist_free_all(list); /* free the list again */