Home | History | Annotate | Download | only in microhttpd

Lines Matching refs:hdr

56   struct MHD_HTTP_Header *hdr;
70 if (NULL == (hdr = malloc (sizeof (struct MHD_HTTP_Header))))
72 if (NULL == (hdr->header = strdup (header)))
74 free (hdr);
77 if (NULL == (hdr->value = strdup (content)))
79 free (hdr->header);
80 free (hdr);
83 hdr->kind = kind;
84 hdr->next = response->first_header;
85 response->first_header = hdr;