blob: 4707e9acfe2f572550e58a8bb10a07433a2db45f [file] [log] [blame]
Willy TARREAU3dc06442006-06-15 21:48:13 +02001/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02002 include/proto/proxy.h
3 This file defines function prototypes for proxy management.
4
Willy Tarreau3a70f942008-02-15 11:15:34 +01005 Copyright (C) 2000-2008 Willy Tarreau - w@1wt.eu
Willy TARREAU3dc06442006-06-15 21:48:13 +02006
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 Tarreaubaaee002006-06-26 02:48:02 +020022#ifndef _PROTO_PROXY_H
23#define _PROTO_PROXY_H
24
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020025#include <common/config.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020026#include <common/ticks.h>
Willy Tarreaud825eef2007-05-12 22:35:00 +020027#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028#include <types/proxy.h>
Willy TARREAU3dc06442006-06-15 21:48:13 +020029
Willy Tarreaubaaee002006-06-26 02:48:02 +020030int start_proxies(int verbose);
Willy Tarreau0c303ee2008-07-07 00:09:58 +020031void maintain_proxies(int *next);
Willy Tarreaubaaee002006-06-26 02:48:02 +020032void soft_stop(void);
33void pause_proxy(struct proxy *p);
34void pause_proxies(void);
35void listen_proxies(void);
36
Willy Tarreau816eb542007-11-04 07:04:43 +010037const char *proxy_cap_str(int cap);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +010038const char *proxy_mode_str(int mode);
39struct proxy *findproxy(const char *name, int mode, int cap);
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +010040struct server *findserver(const struct proxy *px, const char *name);
Willy Tarreaubaaee002006-06-26 02:48:02 +020041
Willy Tarreau816eb542007-11-04 07:04:43 +010042/*
43 * This function returns a string containing the type of the proxy in a format
44 * suitable for error messages, from its capabilities.
45 */
46static inline const char *proxy_type_str(struct proxy *proxy)
47{
48 return proxy_cap_str(proxy->cap);
49}
50
Willy Tarreau3a70f942008-02-15 11:15:34 +010051/* this function initializes all timeouts for proxy p */
52static inline void proxy_reset_timeouts(struct proxy *proxy)
53{
Willy Tarreau0c303ee2008-07-07 00:09:58 +020054 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 Tarreau3a70f942008-02-15 11:15:34 +010062}
63
Willy Tarreaubaaee002006-06-26 02:48:02 +020064#endif /* _PROTO_PROXY_H */
Willy TARREAU3dc06442006-06-15 21:48:13 +020065
Willy Tarreaubaaee002006-06-26 02:48:02 +020066/*
67 * Local variables:
68 * c-indent-level: 8
69 * c-basic-offset: 8
70 * End:
71 */