/usr/include/dovecot/http-header.h is in dovecot-dev 1:2.2.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | #ifndef HTTP_HEADER_H
#define HTTP_HEADER_H
struct http_header;
struct http_header_limits {
uoff_t max_size;
uoff_t max_field_size;
unsigned int max_fields;
};
struct http_header_field {
const char *key; /* FIXME: rename to 'name' for v2.3 */
const char *value;
size_t size;
};
ARRAY_DEFINE_TYPE(http_header_field, struct http_header_field);
static inline bool http_header_field_is(const struct http_header_field *hfield,
const char *name)
{
return (strcasecmp(hfield->key, name) == 0);
}
struct http_header *
http_header_create(pool_t pool, unsigned int init_count);
const struct http_header_field *
http_header_field_add(struct http_header *header,
const char *name, const unsigned char *data, size_t size);
void http_header_field_delete(struct http_header *header, const char *name);
const ARRAY_TYPE(http_header_field) *
http_header_get_fields(const struct http_header *header) ATTR_PURE;
const struct http_header_field *
http_header_field_find(const struct http_header *header, const char *name)
ATTR_PURE;
const char *
http_header_field_get(const struct http_header *header, const char *name)
ATTR_PURE;
int http_header_field_find_unique(const struct http_header *header,
const char *name, const struct http_header_field **hfield_r) ATTR_PURE;
#endif
|