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); |
| 38 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 39 | const char *proxy_cap_str(int cap); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 40 | const char *proxy_mode_str(int mode); |
| 41 | struct proxy *findproxy(const char *name, int mode, int cap); |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 42 | struct server *findserver(const struct proxy *px, const char *name); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 43 | int proxy_cfg_ensure_no_http(struct proxy *curproxy, const char *file); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 44 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 45 | /* |
| 46 | * This function returns a string containing the type of the proxy in a format |
| 47 | * suitable for error messages, from its capabilities. |
| 48 | */ |
| 49 | static inline const char *proxy_type_str(struct proxy *proxy) |
| 50 | { |
| 51 | return proxy_cap_str(proxy->cap); |
| 52 | } |
| 53 | |
Willy Tarreau | 3a70f94 | 2008-02-15 11:15:34 +0100 | [diff] [blame] | 54 | /* this function initializes all timeouts for proxy p */ |
| 55 | static inline void proxy_reset_timeouts(struct proxy *proxy) |
| 56 | { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 57 | proxy->timeout.client = TICK_ETERNITY; |
| 58 | proxy->timeout.tarpit = TICK_ETERNITY; |
| 59 | proxy->timeout.queue = TICK_ETERNITY; |
| 60 | proxy->timeout.connect = TICK_ETERNITY; |
| 61 | proxy->timeout.server = TICK_ETERNITY; |
| 62 | proxy->timeout.appsession = TICK_ETERNITY; |
| 63 | proxy->timeout.httpreq = TICK_ETERNITY; |
| 64 | proxy->timeout.check = TICK_ETERNITY; |
Willy Tarreau | 3a70f94 | 2008-02-15 11:15:34 +0100 | [diff] [blame] | 65 | } |
| 66 | |
Willy Tarreau | 7f062c4 | 2009-03-05 18:43:00 +0100 | [diff] [blame] | 67 | /* increase the number of cumulated connections on the designated frontend */ |
| 68 | static void inline proxy_inc_fe_ctr(struct proxy *fe) |
| 69 | { |
| 70 | fe->cum_feconn++; |
| 71 | update_freq_ctr(&fe->fe_sess_per_sec, 1); |
| 72 | } |
| 73 | |
| 74 | /* increase the number of cumulated connections on the designated backend */ |
| 75 | static void inline proxy_inc_be_ctr(struct proxy *be) |
| 76 | { |
| 77 | be->cum_beconn++; |
| 78 | update_freq_ctr(&be->be_sess_per_sec, 1); |
| 79 | } |
| 80 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 81 | #endif /* _PROTO_PROXY_H */ |
Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 82 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 83 | /* |
| 84 | * Local variables: |
| 85 | * c-indent-level: 8 |
| 86 | * c-basic-offset: 8 |
| 87 | * End: |
| 88 | */ |