version 1.1, 2013/10/14 10:32:47
|
version 1.1.1.2, 2016/11/02 10:35:00
|
Line 1
|
Line 1
|
#ifndef _RESPONSE_H_ |
#ifndef _RESPONSE_H_ |
#define _RESPONSE_H_ |
#define _RESPONSE_H_ |
|
#include "first.h" |
|
|
#include "server.h" |
#include "server.h" |
|
|
Line 15 int response_header_append(server *srv, connection *co
|
Line 16 int response_header_append(server *srv, connection *co
|
handler_t http_response_prepare(server *srv, connection *con); |
handler_t http_response_prepare(server *srv, connection *con); |
int http_response_redirect_to_directory(server *srv, connection *con); |
int http_response_redirect_to_directory(server *srv, connection *con); |
int http_response_handle_cachable(server *srv, connection *con, buffer * mtime); |
int http_response_handle_cachable(server *srv, connection *con, buffer * mtime); |
|
void http_response_send_file (server *srv, connection *con, buffer *path); |
|
void http_response_xsendfile (server *srv, connection *con, buffer *path, const array *xdocroot); |
|
void http_response_backend_done (server *srv, connection *con); |
|
void http_response_backend_error (server *srv, connection *con); |
|
|
buffer * strftime_cache_get(server *srv, time_t last_mod); |
buffer * strftime_cache_get(server *srv, time_t last_mod); |
#endif |
#endif |