Commit bc15e341 authored by Jim Jagielski's avatar Jim Jagielski
Browse files

And un-module the files


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpd-2.2-proxy@772335 13f79535-47bb-0310-9956-ffa450edef68
parent 0e362afa
Loading
Loading
Loading
Loading
+1 −19
Original line number Diff line number Diff line
@@ -20,8 +20,6 @@
#include "apr_version.h"
#include "apr_hooks.h"

module AP_MODULE_DECLARE_DATA lbmethod_bybusyness_module;

static proxy_worker *find_best_bybusyness(proxy_balancer *balancer,
                                request_rec *r)
{
@@ -113,7 +111,7 @@ static apr_status_t age(proxy_balancer *balancer, request_rec *r) {
        return APR_SUCCESS;
}

static const proxy_balancer_method bybusyness =
const proxy_balancer_method proxy_balancer_bybusyness =
{
    "bybusyness",
    &find_best_bybusyness,
@@ -121,19 +119,3 @@ static const proxy_balancer_method bybusyness =
    &age,
    NULL
};


static void register_hook(apr_pool_t *p)
{
    ap_register_provider(p, PROXY_LBMETHOD, "bybusyness", "0", &bybusyness);
}

module AP_MODULE_DECLARE_DATA lbmethod_bybusyness_module = {
    STANDARD20_MODULE_STUFF,
    NULL,       /* create per-directory config structure */
    NULL,       /* merge per-directory config structures */
    NULL,       /* create per-server config structure */
    NULL,       /* merge per-server config structures */
    NULL,       /* command apr_table_t */
    register_hook /* register hooks */
};
+1 −22
Original line number Diff line number Diff line
@@ -20,8 +20,6 @@
#include "apr_version.h"
#include "apr_hooks.h"

module AP_MODULE_DECLARE_DATA lbmethod_byrequests_module;

/*
 * The idea behind the find_best_byrequests scheduler is the following:
 *
@@ -146,7 +144,7 @@ static apr_status_t age(proxy_balancer *balancer, request_rec *r) {
 *      (eg: find_best_bytraffic, above)
 *   2. Register it as a provider.
 */
static const proxy_balancer_method byrequests =
const proxy_balancer_method proxy_balancer_byrequests =
{
    "byrequests",
    &find_best_byrequests,
@@ -154,22 +152,3 @@ static const proxy_balancer_method byrequests =
    &age,
    NULL
};

static void register_hook(apr_pool_t *p)
{
    /* Only the mpm_winnt has child init hook handler.
     * make sure that we are called after the mpm
     * initializes and after the mod_proxy
     */
    ap_register_provider(p, PROXY_LBMETHOD, "byrequests", "0", &byrequests);
}

module AP_MODULE_DECLARE_DATA lbmethod_byrequests_module = {
    STANDARD20_MODULE_STUFF,
    NULL,       /* create per-directory config structure */
    NULL,       /* merge per-directory config structures */
    NULL,       /* create per-server config structure */
    NULL,       /* merge per-server config structures */
    NULL,       /* command apr_table_t */
    register_hook /* register hooks */
};
+1 −22
Original line number Diff line number Diff line
@@ -20,8 +20,6 @@
#include "apr_version.h"
#include "apr_hooks.h"

module AP_MODULE_DECLARE_DATA lbmethod_bytraffic_module;

/*
 * The idea behind the find_best_bytraffic scheduler is the following:
 *
@@ -113,7 +111,7 @@ static apr_status_t age(proxy_balancer *balancer, request_rec *r) {
        return APR_SUCCESS;
}

static const proxy_balancer_method bytraffic =
const proxy_balancer_method proxy_balancer_bytraffic =
{
    "bytraffic",
    &find_best_bytraffic,
@@ -121,22 +119,3 @@ static const proxy_balancer_method bytraffic =
    &age,
    NULL
};

static void register_hook(apr_pool_t *p)
{
    /* Only the mpm_winnt has child init hook handler.
     * make sure that we are called after the mpm
     * initializes and after the mod_proxy
     */
    ap_register_provider(p, PROXY_LBMETHOD, "bytraffic", "0", &bytraffic);
}

module AP_MODULE_DECLARE_DATA lbmethod_bytraffic_module = {
    STANDARD20_MODULE_STUFF,
    NULL,       /* create per-directory config structure */
    NULL,       /* merge per-directory config structures */
    NULL,       /* create per-server config structure */
    NULL,       /* merge per-server config structures */
    NULL,       /* command apr_table_t */
    register_hook /* register hooks */
};