summaryrefslogtreecommitdiffhomepage
path: root/src/upstream.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2009-12-06 13:30:08 +0100
committerMichael Adam <obnox@samba.org>2009-12-07 00:22:36 +0100
commit4a8ea0d23bcff15ce3ccda9b3b85cb7b93345bf0 (patch)
treea13754965ec4a5dc2c107e9f915ec38f6dd28ecb /src/upstream.h
parent22fba83df2daf4002d6a17ecf8873e61c5c34cbb (diff)
upstream: Add upstream list parameter to upstream_get()
to abstract it from the concrete list in the config struct. Now upstream.c does not use any reference to config any more. Michael
Diffstat (limited to 'src/upstream.h')
-rw-r--r--src/upstream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/upstream.h b/src/upstream.h
index 1d4edc8..5125410 100644
--- a/src/upstream.h
+++ b/src/upstream.h
@@ -42,7 +42,7 @@ struct upstream {
#ifdef UPSTREAM_SUPPORT
extern void upstream_add (const char *host, int port, const char *domain,
struct upstream **upstream_list);
-struct upstream *upstream_get (char *host);
+extern struct upstream *upstream_get (char *host, struct upstream *up);
#endif /* UPSTREAM_SUPPORT */
#endif /* _TINYPROXY_UPSTREAM_H_ */