http-response.c revision c9779bb27bb927a49de946e66f178126ecd451b6
#include "lib.h"
#include "array.h"
#include "ioloop.h"
#include "istream.h"
#include "http-response.h"
void
http_response_init(struct http_response *resp,
unsigned int status, const char *reason)
{
memset(resp, 0, sizeof(*resp));
resp->version_major = 1;
resp->version_minor = 1;
resp->date = ioloop_time;
resp->status = status;
resp->reason = reason;
}
bool http_response_has_connection_option(const struct http_response *resp,
const char *option)
{
const char *const *opt_idx;
if (!array_is_created(&resp->connection_options))
return FALSE;
array_foreach(&resp->connection_options, opt_idx) {
if (strcasecmp(*opt_idx, option) == 0)
return TRUE;
}
return FALSE;
}
int http_response_get_payload_size(const struct http_response *resp,
uoff_t *size_r)
{
if (resp->payload == NULL) {
*size_r = 0;
return 1;
}
return i_stream_get_size(resp->payload, TRUE, size_r);
}