diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2005-08-16 04:03:19 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2005-08-16 04:03:19 +0000 |
commit | 4c58663041dbfdb751066da695af95e3aa83cbe7 (patch) | |
tree | de83968499735e7ed5ad2959e7b959a08ec9c167 /src/conffile.c | |
parent | 808bdbd1e9eab8e4fcd925442495d019b67f0b5a (diff) |
* [Refactor] Moved Reverse Proxy Code
Moved the reverse proxy code from reqs.c into it's own files
(reverse_proxy.c). The code in reqs.c is way too complicated, so I
want to move unrelated code into their own files to simplify the main
concepts in reqs.c.
Diffstat (limited to 'src/conffile.c')
-rw-r--r-- | src/conffile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/conffile.c b/src/conffile.c index 453942f..1730998 100644 --- a/src/conffile.c +++ b/src/conffile.c @@ -1,4 +1,4 @@ -/* $Id: conffile.c,v 1.5 2005-08-15 03:54:31 rjkaes Exp $ +/* $Id: conffile.c,v 1.6 2005-08-16 04:03:19 rjkaes Exp $ * * Parses the configuration file and sets up the config_s structure for * use by the application. This file replaces the old grammar.y and @@ -30,6 +30,7 @@ #include "htmlerror.h" #include "log.h" #include "reqs.h" +#include "reverse_proxy.h" /* * The configuration directives are defined in the structure below. Each |