http-message-parser.h revision 6dad0888fcec8372f230941c70d8940b8c203b32
#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