2006-06-15 19:48:13 +00:00
|
|
|
/*
|
2006-06-26 00:48:02 +00:00
|
|
|
include/proto/proxy.h
|
|
|
|
This file defines function prototypes for proxy management.
|
|
|
|
|
2008-02-15 10:15:34 +00:00
|
|
|
Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu
|
2006-06-15 19:48:13 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation, version 2.1
|
|
|
|
exclusively.
|
|
|
|
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
2006-06-26 00:48:02 +00:00
|
|
|
#ifndef _PROTO_PROXY_H
|
|
|
|
#define _PROTO_PROXY_H
|
|
|
|
|
2006-06-29 16:54:54 +00:00
|
|
|
#include <common/config.h>
|
2008-07-06 22:09:58 +00:00
|
|
|
#include <common/ticks.h>
|
2007-05-12 20:35:00 +00:00
|
|
|
#include <common/time.h>
|
2006-06-26 00:48:02 +00:00
|
|
|
#include <types/proxy.h>
|
2009-03-05 17:43:00 +00:00
|
|
|
#include <proto/freq_ctr.h>
|
2006-06-15 19:48:13 +00:00
|
|
|
|
2006-06-26 00:48:02 +00:00
|
|
|
int start_proxies(int verbose);
|
2008-07-06 22:09:58 +00:00
|
|
|
void maintain_proxies(int *next);
|
2006-06-26 00:48:02 +00:00
|
|
|
void soft_stop(void);
|
|
|
|
void pause_proxy(struct proxy *p);
|
2008-10-12 10:07:48 +00:00
|
|
|
void stop_proxy(struct proxy *p);
|
2006-06-26 00:48:02 +00:00
|
|
|
void pause_proxies(void);
|
|
|
|
void listen_proxies(void);
|
2009-07-12 06:27:39 +00:00
|
|
|
int session_set_backend(struct session *s, struct proxy *be);
|
2006-06-15 19:48:13 +00:00
|
|
|
|
2007-11-04 06:04:43 +00:00
|
|
|
const char *proxy_cap_str(int cap);
|
2007-11-03 22:41:58 +00:00
|
|
|
const char *proxy_mode_str(int mode);
|
|
|
|
struct proxy *findproxy(const char *name, int mode, int cap);
|
2008-02-18 00:26:35 +00:00
|
|
|
struct server *findserver(const struct proxy *px, const char *name);
|
2009-06-22 13:48:36 +00:00
|
|
|
int proxy_cfg_ensure_no_http(struct proxy *curproxy);
|
2006-06-26 00:48:02 +00:00
|
|
|
|
2007-11-04 06:04:43 +00:00
|
|
|
/*
|
|
|
|
* This function returns a string containing the type of the proxy in a format
|
|
|
|
* suitable for error messages, from its capabilities.
|
|
|
|
*/
|
|
|
|
static inline const char *proxy_type_str(struct proxy *proxy)
|
|
|
|
{
|
|
|
|
return proxy_cap_str(proxy->cap);
|
|
|
|
}
|
|
|
|
|
2008-02-15 10:15:34 +00:00
|
|
|
/* this function initializes all timeouts for proxy p */
|
|
|
|
static inline void proxy_reset_timeouts(struct proxy *proxy)
|
|
|
|
{
|
2008-07-06 22:09:58 +00:00
|
|
|
proxy->timeout.client = TICK_ETERNITY;
|
|
|
|
proxy->timeout.tarpit = TICK_ETERNITY;
|
|
|
|
proxy->timeout.queue = TICK_ETERNITY;
|
|
|
|
proxy->timeout.connect = TICK_ETERNITY;
|
|
|
|
proxy->timeout.server = TICK_ETERNITY;
|
|
|
|
proxy->timeout.appsession = TICK_ETERNITY;
|
|
|
|
proxy->timeout.httpreq = TICK_ETERNITY;
|
|
|
|
proxy->timeout.check = TICK_ETERNITY;
|
2008-02-15 10:15:34 +00:00
|
|
|
}
|
|
|
|
|
2009-03-05 17:43:00 +00:00
|
|
|
/* increase the number of cumulated connections on the designated frontend */
|
|
|
|
static void inline proxy_inc_fe_ctr(struct proxy *fe)
|
|
|
|
{
|
|
|
|
fe->cum_feconn++;
|
|
|
|
update_freq_ctr(&fe->fe_sess_per_sec, 1);
|
2009-05-10 16:52:49 +00:00
|
|
|
if (fe->fe_sess_per_sec.curr_ctr > fe->fe_sps_max)
|
|
|
|
fe->fe_sps_max = fe->fe_sess_per_sec.curr_ctr;
|
2009-03-05 17:43:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* increase the number of cumulated connections on the designated backend */
|
|
|
|
static void inline proxy_inc_be_ctr(struct proxy *be)
|
|
|
|
{
|
|
|
|
be->cum_beconn++;
|
|
|
|
update_freq_ctr(&be->be_sess_per_sec, 1);
|
2009-05-10 16:52:49 +00:00
|
|
|
if (be->be_sess_per_sec.curr_ctr > be->be_sps_max)
|
|
|
|
be->be_sps_max = be->be_sess_per_sec.curr_ctr;
|
2009-03-05 17:43:00 +00:00
|
|
|
}
|
|
|
|
|
2006-06-26 00:48:02 +00:00
|
|
|
#endif /* _PROTO_PROXY_H */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* c-indent-level: 8
|
|
|
|
* c-basic-offset: 8
|
|
|
|
* End:
|
|
|
|
*/
|