From 3f1201c8b37280111efaf2e44d5992459eb4f4be Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sun, 6 Dec 2009 22:59:08 +0100 Subject: Add a reversepath argument to reversepath_get(). This abstracts the setter/getter functions for the reversepath list from the concrete list in config.reversepath_list. Michael --- src/reverse-proxy.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/reverse-proxy.c') diff --git a/src/reverse-proxy.c b/src/reverse-proxy.c index 126b957..efafa74 100644 --- a/src/reverse-proxy.c +++ b/src/reverse-proxy.c @@ -80,10 +80,8 @@ void reversepath_add (const char *path, const char *url, /* * Check if a request url is in the reversepath list */ -struct reversepath *reversepath_get (char *url) +struct reversepath *reversepath_get (char *url, struct reversepath *reverse) { - struct reversepath *reverse = config.reversepath_list; - while (reverse) { if (strstr (url, reverse->path) == url) return reverse; @@ -108,7 +106,7 @@ char *reverse_rewrite_url (struct conn_s *connptr, hashmap_t hashofheaders, /* Reverse requests always start with a slash */ if (*url == '/') { /* First try locating the reverse mapping by request url */ - reverse = reversepath_get (url); + reverse = reversepath_get (url, config.reversepath_list); if (reverse) { rewrite_url = (char *) safemalloc (strlen (url) + strlen (reverse->url) + @@ -124,8 +122,9 @@ char *reverse_rewrite_url (struct conn_s *connptr, hashmap_t hashofheaders, if ((cookieval = strstr (cookie, REVERSE_COOKIE "=")) && (reverse = reversepath_get (cookieval + - strlen (REVERSE_COOKIE) + - 1))) { + strlen (REVERSE_COOKIE) + 1, + config.reversepath_list))) + { rewrite_url = (char *) safemalloc (strlen (url) + -- cgit v1.2.3