You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@apache.org on 2002/01/30 13:40:39 UTC

cvs commit: httpd-2.0/modules/proxy proxy_connect.c proxy_http.c

martin      02/01/30 04:40:39

  Modified:    modules/proxy proxy_connect.c proxy_http.c
  Log:
  In the debug log, say 'decline' instead of 'reject' when DECLINEing
  
  Revision  Changes    Path
  1.53      +1 -1      httpd-2.0/modules/proxy/proxy_connect.c
  
  Index: proxy_connect.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_connect.c,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- proxy_connect.c	4 Jan 2002 18:32:48 -0000	1.52
  +++ proxy_connect.c	30 Jan 2002 12:40:39 -0000	1.53
  @@ -142,7 +142,7 @@
       /* is this for us? */
       if (r->method_number != M_CONNECT) {
           ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
  -		     "proxy: CONNECT: rejecting URL %s", url);
  +		     "proxy: CONNECT: declining URL %s", url);
   	return DECLINED;
       }
       ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
  
  
  
  1.126     +1 -1      httpd-2.0/modules/proxy/proxy_http.c
  
  Index: proxy_http.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_http.c,v
  retrieving revision 1.125
  retrieving revision 1.126
  diff -u -r1.125 -r1.126
  --- proxy_http.c	30 Jan 2002 04:34:11 -0000	1.125
  +++ proxy_http.c	30 Jan 2002 12:40:39 -0000	1.126
  @@ -971,7 +971,7 @@
       /* is it for us? */
       if (strncasecmp(url, "http:", 5)) {
           ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
  -                     "proxy: HTTP: rejecting URL %s", url);
  +                     "proxy: HTTP: declining URL %s", url);
           return DECLINED; /* only interested in HTTP */
       }
       ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,