#ifndef _LIGHTTPD_RESPONSE_H_ #define _LIGHTTPD_RESPONSE_H_ #ifndef _LIGHTTPD_BASE_H_ #error Please include instead of this file #endif struct liResponse { liHttpHeaders *headers; gint http_status; liTransferEncoding transfer_encoding; }; LI_API void response_init(liResponse *resp); LI_API void response_reset(liResponse *resp); LI_API void response_clear(liResponse *resp); LI_API void response_send_headers(liConnection *con); LI_API void response_send_error_page(liConnection *con); #endif