Lines Matching refs:HttpHeader
65 /* HttpHeader is a simple structure used to hold a (key,value)
68 typedef struct HttpHeader {
69 struct HttpHeader* next;
72 } HttpHeader;
75 http_header_free( HttpHeader* h )
84 http_header_append( HttpHeader* h, const char* value )
96 static HttpHeader*
100 HttpHeader* h = malloc(sizeof(*h) + len+1);
117 HttpHeader* first;
118 HttpHeader* last;
131 HttpHeader* h = l->first;
140 HttpHeader* h )
155 HttpHeader* h;
261 HttpHeader* h = http_header_alloc(key,value);
569 HttpHeader* h;
604 HttpHeader* h;