Renamed htmlerror.[ch] to html-error.[ch]

This commit is contained in:
Mukund Sivaraman 2008-05-24 13:47:14 +05:30
parent 249d4b7f33
commit b0a3568de0
7 changed files with 10 additions and 10 deletions

View File

@ -28,7 +28,7 @@ tinyproxy_SOURCES = \
daemon.c daemon.h \
hashmap.c hashmap.h \
heap.c heap.h \
htmlerror.c htmlerror.h \
html-error.c html-error.h \
http-message.c http-message.h \
log.c log.h \
network.c network.h \

View File

@ -31,7 +31,7 @@
#include "child.h"
#include "filter.h"
#include "heap.h"
#include "htmlerror.h"
#include "html-error.h"
#include "log.h"
#include "reqs.h"
#include "reverse-proxy.h"

View File

@ -26,7 +26,7 @@
#include "buffer.h"
#include "conns.h"
#include "heap.h"
#include "htmlerror.h"
#include "html-error.h"
#include "network.h"
#include "utils.h"

View File

@ -16,10 +16,10 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/* See 'htmlerror.c' for detailed information. */
/* See 'html-error.c' for detailed information. */
#ifndef TINYPROXY_HTMLERROR_H
#define TINYPROXY_HTMLERROR_H
#ifndef TINYPROXY_HTML_ERROR_H
#define TINYPROXY_HTML_ERROR_H
/* Forward declaration */
struct conn_s;
@ -33,4 +33,4 @@ extern int send_html_file(FILE * infile, struct conn_s *connptr);
extern int send_http_headers(struct conn_s *connptr, int code, char *message);
extern int add_standard_vars(struct conn_s *connptr);
#endif /* !TINYPROXY_HTMLERROR_H */
#endif /* !TINYPROXY_HTML_ERROR_H */

View File

@ -34,7 +34,7 @@
#include "filter.h"
#include "hashmap.h"
#include "heap.h"
#include "htmlerror.h"
#include "html-error.h"
#include "log.h"
#include "network.h"
#include "reqs.h"

View File

@ -23,7 +23,7 @@
#include "conns.h"
#include "heap.h"
#include "htmlerror.h"
#include "html-error.h"
#include "log.h"
/*

View File

@ -29,7 +29,7 @@
#include "log.h"
#include "heap.h"
#include "htmlerror.h"
#include "html-error.h"
#include "stats.h"
#include "utils.h"