mod_serf.h revision 546d45814f6de2976187f3eaad9ba7a4b01c8b77
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file mod_serf.h
* @brief Serf Interfaces
*
*/
#include "httpd.h"
#include "http_config.h"
#include "ap_provider.h"
#ifndef _MOD_SERF_H_
#define _MOD_SERF_H_
/**
* @addtogroup Serf_cluster_provider
* @{
*/
#define AP_SERF_CLUSTER_PROVIDER "serf_cluster"
typedef struct ap_serf_server_t ap_serf_server_t;
struct ap_serf_server_t {
/* TOOD: consider using apr_sockaddr_t, except they suck. */
const char *ip;
};
typedef struct ap_serf_cluster_provider_t ap_serf_cluster_provider_t;
struct ap_serf_cluster_provider_t {
/**
* Human readable name of this provider, used in configuration.
*/
const char *name;
/**
* Baton passed to all methods in this provider.
*
* This field may be NULL.
*/
void *baton;
/**
* cluster are valid.
*
* Return non-NULL on failure with an error message, like standard httpd
* configuration directives.
*
* This field must be set.
*/
const char* (*check_config)(void *baton,
/**
* Provide an ordered array of ap_serf_server_t in the order that
* mod_serf should attempt to use them. If a server on the list
* is known to be not responding, it may be skipped. If mod_serf is
* unable to contact any of the servers, a 502 will be returned to the
* client.
*
* Returns OK on sucess, all other return codes will result in a 500.
*
* This field must be set.
*/
int (*list_servers)(void *baton,
request_rec *r,
/**
* If a request was successfully fulfilled by this address, feedback will
* be given to the provider, so it may make better recommendations.
*
* This field may be NULL.
*/
/**
* If a request failed to be fulfilled by this address, feedback will
* be given to the provider, so it may make better recommendations.
*
* This field may be NULL.
*/
};
/** @} */
#endif /* _MOD_SERF_H_ */