Lines Matching defs:header
129 /* Accumulates outgoing http header names/values. */
469 dprintf(vds, "header file %s: %s\n", filename, strerror(errno));
492 dprintf(vds, "skipping bad header: %s\n", strerror(-rc));
555 dprintf (data->client->verbose_fd, "header %.*s", (int)numitems, buffer);
1961 /* Add an outgoing HTTP header. */
1962 int debuginfod_add_http_header (debuginfod_client *client, const char* header)
1964 /* Sanity check header value is of the form Header: Value.
1967 char *colon = strchr (header, ':'); /* first colon */
1969 || colon == header /* not at beginning - i.e., have a header name */
1974 struct curl_slist *temp = curl_slist_append (client->headers, header);
1980 if (startswith (header, "User-Agent:"))