diff options
Diffstat (limited to '')
-rw-r--r-- | src/conf.c | 4 | ||||
-rw-r--r-- | src/reverse-proxy.c | 7 | ||||
-rw-r--r-- | src/reverse-proxy.h | 3 |
3 files changed, 8 insertions, 6 deletions
@@ -776,11 +776,11 @@ static HANDLE_FUNC (handle_reversepath) safefree (arg1); return -1; } - reversepath_add (arg1, arg2); + reversepath_add (arg1, arg2, &conf->reversepath_list); safefree (arg1); safefree (arg2); } else { - reversepath_add (NULL, arg1); + reversepath_add (NULL, arg1, &conf->reversepath_list); safefree (arg1); } return 0; diff --git a/src/reverse-proxy.c b/src/reverse-proxy.c index 7346fc4..126b957 100644 --- a/src/reverse-proxy.c +++ b/src/reverse-proxy.c @@ -29,7 +29,8 @@ /* * Add entry to the reversepath list */ -void reversepath_add (const char *path, const char *url) +void reversepath_add (const char *path, const char *url, + struct reversepath **reversepath_list) { struct reversepath *reverse; @@ -68,8 +69,8 @@ void reversepath_add (const char *path, const char *url) reverse->url = safestrdup (url); - reverse->next = config.reversepath_list; - config.reversepath_list = reverse; + reverse->next = *reversepath_list; + *reversepath_list = reverse; log_message (LOG_INFO, "Added reverse proxy rule: %s -> %s", reverse->path, diff --git a/src/reverse-proxy.h b/src/reverse-proxy.h index 22e0d08..6bd40d6 100644 --- a/src/reverse-proxy.h +++ b/src/reverse-proxy.h @@ -31,7 +31,8 @@ struct reversepath { #define REVERSE_COOKIE "yummy_magical_cookie" -extern void reversepath_add (const char *path, const char *url); +extern void reversepath_add (const char *path, const char *url, + struct reversepath **reversepath_list); extern struct reversepath *reversepath_get (char *url); extern char *reverse_rewrite_url (struct conn_s *connptr, hashmap_t hashofheaders, char *url); |