Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2 | include/proto/proxy.h |
| 3 | This file defines function prototypes for proxy management. |
| 4 | |
Willy Tarreau | 3a70f94 | 2008-02-15 11:15:34 +0100 | [diff] [blame] | 5 | Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu |
Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 6 | |
| 7 | This library is free software; you can redistribute it and/or |
| 8 | modify it under the terms of the GNU Lesser General Public |
| 9 | License as published by the Free Software Foundation, version 2.1 |
| 10 | exclusively. |
| 11 | |
| 12 | This library is distributed in the hope that it will be useful, |
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | Lesser General Public License for more details. |
| 16 | |
| 17 | You should have received a copy of the GNU Lesser General Public |
| 18 | License along with this library; if not, write to the Free Software |
| 19 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 22 | #ifndef _PROTO_PROXY_H |
| 23 | #define _PROTO_PROXY_H |
| 24 | |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 25 | #include <common/config.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 26 | #include <common/ticks.h> |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 27 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | #include <types/proxy.h> |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 29 | #include <proto/freq_ctr.h> |
Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 30 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 31 | int start_proxies(int verbose); |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 32 | void maintain_proxies(int *next); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 33 | void soft_stop(void); |
| 34 | void pause_proxy(struct proxy *p); |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 35 | void stop_proxy(struct proxy *p); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 36 | void pause_proxies(void); |
| 37 | void listen_proxies(void); |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 38 | int session_set_backend(struct session *s, struct proxy *be); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 39 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 40 | const char *proxy_cap_str(int cap); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 41 | const char *proxy_mode_str(int mode); |
| 42 | struct proxy *findproxy(const char *name, int mode, int cap); |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 43 | struct server *findserver(const struct proxy *px, const char *name); |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 44 | int proxy_cfg_ensure_no_http(struct proxy *curproxy); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 45 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 46 | /* |
| 47 | * This function returns a string containing the type of the proxy in a format |
| 48 | * suitable for error messages, from its capabilities. |
| 49 | */ |
| 50 | static inline const char *proxy_type_str(struct proxy *proxy) |
| 51 | { |
| 52 | return proxy_cap_str(proxy->cap); |
| 53 | } |
| 54 | |
Willy Tarreau | 3a70f94 | 2008-02-15 11:15:34 +0100 | [diff] [blame] | 55 | /* this function initializes all timeouts for proxy p */ |
| 56 | static inline void proxy_reset_timeouts(struct proxy *proxy) |
| 57 | { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 58 | proxy->timeout.client = TICK_ETERNITY; |
| 59 | proxy->timeout.tarpit = TICK_ETERNITY; |
| 60 | proxy->timeout.queue = TICK_ETERNITY; |
| 61 | proxy->timeout.connect = TICK_ETERNITY; |
| 62 | proxy->timeout.server = TICK_ETERNITY; |
| 63 | proxy->timeout.appsession = TICK_ETERNITY; |
| 64 | proxy->timeout.httpreq = TICK_ETERNITY; |
| 65 | proxy->timeout.check = TICK_ETERNITY; |
Willy Tarreau | 3a70f94 | 2008-02-15 11:15:34 +0100 | [diff] [blame] | 66 | } |
| 67 | |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 68 | /* increase the number of cumulated connections on the designated frontend */ |
| 69 | static void inline proxy_inc_fe_ctr(struct proxy *fe) |
| 70 | { |
| 71 | fe->cum_feconn++; |
| 72 | update_freq_ctr(&fe->fe_sess_per_sec, 1); |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 73 | if (fe->fe_sess_per_sec.curr_ctr > fe->fe_sps_max) |
| 74 | fe->fe_sps_max = fe->fe_sess_per_sec.curr_ctr; |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | /* increase the number of cumulated connections on the designated backend */ |
| 78 | static void inline proxy_inc_be_ctr(struct proxy *be) |
| 79 | { |
| 80 | be->cum_beconn++; |
| 81 | update_freq_ctr(&be->be_sess_per_sec, 1); |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 82 | if (be->be_sess_per_sec.curr_ctr > be->be_sps_max) |
| 83 | be->be_sps_max = be->be_sess_per_sec.curr_ctr; |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 84 | } |
| 85 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 86 | #endif /* _PROTO_PROXY_H */ |
Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 87 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 88 | /* |
| 89 | * Local variables: |
| 90 | * c-indent-level: 8 |
| 91 | * c-basic-offset: 8 |
| 92 | * End: |
| 93 | */ |