summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/filter.c4
-rw-r--r--src/filter.h4
-rw-r--r--src/reqs.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/src/filter.c b/src/filter.c
index 8acfed2..0c367ac 100644
--- a/src/filter.c
+++ b/src/filter.c
@@ -1,4 +1,4 @@
-/* $Id: filter.c,v 1.2 2000-09-11 23:43:59 rjkaes Exp $
+/* $Id: filter.c,v 1.3 2000-11-23 04:46:25 rjkaes Exp $
*
* Copyright (c) 1999 George Talusan (gstalusan@uwaterloo.ca)
*
@@ -107,7 +107,7 @@ void filter_destroy(void)
}
/* returns 0 if host is not an element of filter list, non-zero otherwise */
-int filter_host(char *host)
+int filter_url(char *host)
{
struct filter_list *p;
char *s, *port;
diff --git a/src/filter.h b/src/filter.h
index 59ab33c..8e7aff8 100644
--- a/src/filter.h
+++ b/src/filter.h
@@ -1,4 +1,4 @@
-/* $Id: filter.h,v 1.2 2000-09-11 23:43:59 rjkaes Exp $
+/* $Id: filter.h,v 1.3 2000-11-23 04:46:25 rjkaes Exp $
*
* See 'filter.c' for a detailed description.
*
@@ -20,6 +20,6 @@
extern void filter_init(void);
extern void filter_destroy(void);
-extern int filter_host(char *host);
+extern int filter_url(char *host);
#endif
diff --git a/src/reqs.c b/src/reqs.c
index 90463f0..01c8ab8 100644
--- a/src/reqs.c
+++ b/src/reqs.c
@@ -1,4 +1,4 @@
-/* $Id: reqs.c,v 1.9 2000-09-26 04:57:46 rjkaes Exp $
+/* $Id: reqs.c,v 1.10 2000-11-23 04:46:25 rjkaes Exp $
*
* This is where all the work in tinyproxy is actually done. Incoming
* connections have a new thread created for them. The thread then
@@ -214,7 +214,7 @@ static int process_method(struct conn_s *connptr)
#ifdef FILTER_ENABLE
/* Filter domains out */
if (config.filter) {
- if (filter_host(uri->authority)) {
+ if (filter_url(uri->authority)) {
log(LOG_ERR, "clientreq: Filtered connection (%s)",
peer_ipaddr);
httperr(connptr, 404,