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 | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 29 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 30 | int start_proxies(int verbose); |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 31 | void maintain_proxies(int *next); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 32 | void soft_stop(void); |
| 33 | void pause_proxy(struct proxy *p); |
| 34 | void pause_proxies(void); |
| 35 | void listen_proxies(void); |
| 36 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 37 | const char *proxy_cap_str(int cap); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 38 | const char *proxy_mode_str(int mode); |
| 39 | struct proxy *findproxy(const char *name, int mode, int cap); |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 40 | struct server *findserver(const struct proxy *px, const char *name); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 41 | |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 42 | /* |
| 43 | * This function returns a string containing the type of the proxy in a format |
| 44 | * suitable for error messages, from its capabilities. |
| 45 | */ |
| 46 | static inline const char *proxy_type_str(struct proxy *proxy) |
| 47 | { |
| 48 | return proxy_cap_str(proxy->cap); |
| 49 | } |
| 50 | |
Willy Tarreau | 3a70f94 | 2008-02-15 11:15:34 +0100 | [diff] [blame] | 51 | /* this function initializes all timeouts for proxy p */ |
| 52 | static inline void proxy_reset_timeouts(struct proxy *proxy) |
| 53 | { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 54 | proxy->timeout.client = TICK_ETERNITY; |
| 55 | proxy->timeout.tarpit = TICK_ETERNITY; |
| 56 | proxy->timeout.queue = TICK_ETERNITY; |
| 57 | proxy->timeout.connect = TICK_ETERNITY; |
| 58 | proxy->timeout.server = TICK_ETERNITY; |
| 59 | proxy->timeout.appsession = TICK_ETERNITY; |
| 60 | proxy->timeout.httpreq = TICK_ETERNITY; |
| 61 | proxy->timeout.check = TICK_ETERNITY; |
Willy Tarreau | 3a70f94 | 2008-02-15 11:15:34 +0100 | [diff] [blame] | 62 | } |
| 63 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 64 | #endif /* _PROTO_PROXY_H */ |
Willy TARREAU | 3dc0644 | 2006-06-15 21:48:13 +0200 | [diff] [blame] | 65 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 66 | /* |
| 67 | * Local variables: |
| 68 | * c-indent-level: 8 |
| 69 | * c-basic-offset: 8 |
| 70 | * End: |
| 71 | */ |