Renamed file to replace underscores in it with dashes
This commit is contained in:
parent
376caf8f25
commit
d5472ec0bd
@ -130,7 +130,7 @@ TP_ARG_ENABLE(reverse,
|
||||
[Enable reverse proxying (default is NO)]
|
||||
no)
|
||||
if test x"$reverse_enabled" = x"yes"; then
|
||||
ADDITIONAL_OBJECTS="$ADDITIONAL_OBJECTS reverse_proxy.o"
|
||||
ADDITIONAL_OBJECTS="$ADDITIONAL_OBJECTS reverse-proxy.o"
|
||||
AC_DEFINE(REVERSE_SUPPORT)
|
||||
fi
|
||||
|
||||
|
@ -41,7 +41,7 @@ tinyproxy_SOURCES = \
|
||||
vector.c vector.h
|
||||
|
||||
EXTRA_tinyproxy_SOURCES = filter.c filter.h \
|
||||
reverse_proxy.c reverse_proxy.h
|
||||
reverse-proxy.c reverse-proxy.h
|
||||
tinyproxy_DEPENDENCIES = @ADDITIONAL_OBJECTS@
|
||||
tinyproxy_LDADD = @ADDITIONAL_OBJECTS@
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "htmlerror.h"
|
||||
#include "log.h"
|
||||
#include "reqs.h"
|
||||
#include "reverse_proxy.h"
|
||||
#include "reverse-proxy.h"
|
||||
|
||||
/*
|
||||
* The configuration directives are defined in the structure below. Each
|
||||
|
@ -39,7 +39,7 @@
|
||||
#include "text.h"
|
||||
#include "utils.h"
|
||||
#include "vector.h"
|
||||
#include "reverse_proxy.h"
|
||||
#include "reverse-proxy.h"
|
||||
|
||||
/*
|
||||
* Maximum length of a HTTP line
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* $Id: reverse_proxy.c,v 1.1 2005-08-16 04:03:19 rjkaes Exp $
|
||||
/* $Id: reverse-proxy.c,v 1.1 2005-08-16 04:03:19 rjkaes Exp $
|
||||
*
|
||||
* Allow tinyproxy to be used as a reverse proxy.
|
||||
*
|
||||
@ -16,7 +16,7 @@
|
||||
*/
|
||||
|
||||
#include "tinyproxy.h"
|
||||
#include "reverse_proxy.h"
|
||||
#include "reverse-proxy.h"
|
||||
|
||||
#include "conns.h"
|
||||
#include "heap.h"
|
@ -1,6 +1,6 @@
|
||||
/* $Id: reverse_proxy.h,v 1.1 2005-08-16 04:03:19 rjkaes Exp $
|
||||
/* $Id: reverse-proxy.h,v 1.1 2005-08-16 04:03:19 rjkaes Exp $
|
||||
*
|
||||
* See 'reverse_proxy.c' for a detailed description.
|
||||
* See 'reverse-proxy.c' for a detailed description.
|
||||
*
|
||||
* Copyright (C) 2005 Robert James Kaes (rjkaes@users.sourceforge.net)
|
||||
*
|
Loading…
Reference in New Issue
Block a user