Searched defs:hfield (Results 1 - 2 of 2) sorted by relevance

/dovecot/src/lib-http/
H A Dhttp-header.h19 static inline bool http_header_field_is(const struct http_header_field *hfield, argument
22 return (strcasecmp(hfield->name, name) == 0);
H A Dhttp-header.c28 struct http_header_field *hfield; local
32 hfield = array_append_space(&header->fields);
33 hfield->name = p_strdup(pool, name);
34 hfield->size = size;
38 hfield->value = (const char *)value;
40 return hfield;
46 const struct http_header_field *hfield; local
48 array_foreach(hfields, hfield) {
49 if (http_header_field_is(hfield, name)) {
50 array_delete(hfields, array_foreach_idx(hfields, hfield),
64 const struct http_header_field *hfield; local
77 const struct http_header_field *hfield = local
85 const struct http_header_field *hfield, *hfield_found = NULL; local
[all...]

Completed in 8 milliseconds