http-message-parser.h revision b72c3363092b73cab1da2de4a9d75592e7d8fd6b
#ifndef HTTP_MESSAGE_PARSER_H
#define HTTP_MESSAGE_PARSER_H
#include "http-response.h"
struct http_message {
unsigned int version_major;
unsigned int version_minor;
const char *location;
const char *transfer_encoding;
unsigned int connection_close:1;
};
struct http_message_parser {
struct http_header_parser *header_parser;
struct http_message msg;
};
const char **error_r);
const char **error_r);
const char **error_r);
#endif