http-response.h revision 1920ef85b63738a06914e56508049dd0afe38732
#ifndef HTTP_RESPONSE_H
#define HTTP_RESPONSE_H
struct http_response_header {
const char *key;
const char *value;
};
struct http_response {
unsigned char version_major;
unsigned char version_minor;
unsigned int status;
const char *reason;
const char *location;
unsigned int connection_close:1;
};
#endif