You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jf...@apache.org on 2006/07/31 23:02:57 UTC

svn commit: r427267 - in /httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy: mod_proxy.h mod_proxy_health_checker.h proxy_util.c

Author: jfclere
Date: Mon Jul 31 14:02:57 2006
New Revision: 427267

URL: http://svn.apache.org/viewvc?rev=427267&view=rev
Log:
Remove health_worker_method for mod_proxy.h and
mod_proxy_health_checker.h from the includes of proxy_util.c

Modified:
    httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy.h
    httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy_health_checker.h
    httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/proxy_util.c

Modified: httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy.h
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy.h?rev=427267&r1=427266&r2=427267&view=diff
==============================================================================
--- httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy.h (original)
+++ httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy.h Mon Jul 31 14:02:57 2006
@@ -128,7 +128,6 @@
 typedef struct proxy_worker    proxy_worker;
 typedef struct proxy_conn_pool proxy_conn_pool;
 typedef struct proxy_balancer_method proxy_balancer_method;
-typedef struct health_worker_method health_worker_method;
 
 typedef struct {
     apr_array_header_t *proxies;

Modified: httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy_health_checker.h
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy_health_checker.h?rev=427267&r1=427266&r2=427267&view=diff
==============================================================================
--- httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy_health_checker.h (original)
+++ httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/mod_proxy_health_checker.h Mon Jul 31 14:02:57 2006
@@ -25,6 +25,7 @@
 #define UNINITIALIZED  0
 
 typedef struct proxy_worker_conf proxy_worker_conf;
+typedef struct health_worker_method health_worker_method;
 
 /* allow health check method on workers in a non httpd process */
 struct health_worker_method {

Modified: httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/proxy_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/proxy_util.c?rev=427267&r1=427266&r2=427267&view=diff
==============================================================================
--- httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/proxy_util.c (original)
+++ httpd/httpd/branches/httpd-proxy-scoreboard/modules/proxy/proxy_util.c Mon Jul 31 14:02:57 2006
@@ -16,7 +16,6 @@
 
 /* Utility routines for Apache proxy */
 #include "mod_proxy.h"
-#include "mod_proxy_health_checker.h"
 #include "ap_mpm.h"
 #include "apr_version.h"