Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 2 | include/common/defaults.h |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3 | Miscellaneous default values. |
| 4 | |
| 5 | Copyright (C) 2000-2006 Willy Tarreau - w@1wt.eu |
| 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 | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #ifndef _COMMON_DEFAULTS_H |
| 23 | #define _COMMON_DEFAULTS_H |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 25 | /* |
| 26 | * BUFSIZE defines the size of a read and write buffer. It is the maximum |
| 27 | * amount of bytes which can be stored by the proxy for each session. However, |
| 28 | * when reading HTTP headers, the proxy needs some spare space to add or rewrite |
| 29 | * headers if needed. The size of this spare is defined with MAXREWRITE. So it |
| 30 | * is not possible to process headers longer than BUFSIZE-MAXREWRITE bytes. By |
| 31 | * default, BUFSIZE=16384 bytes and MAXREWRITE=BUFSIZE/2, so the maximum length |
| 32 | * of headers accepted is 8192 bytes, which is in line with Apache's limits. |
| 33 | */ |
| 34 | #ifndef BUFSIZE |
| 35 | #define BUFSIZE 16384 |
| 36 | #endif |
| 37 | |
| 38 | // reserved buffer space for header rewriting |
| 39 | #ifndef MAXREWRITE |
| 40 | #define MAXREWRITE (BUFSIZE / 2) |
| 41 | #endif |
| 42 | |
| 43 | #define REQURI_LEN 1024 |
| 44 | #define CAPTURE_LEN 64 |
| 45 | |
| 46 | // max # args on a configuration line |
| 47 | #define MAX_LINE_ARGS 40 |
| 48 | |
| 49 | // max # of added headers per request |
| 50 | #define MAX_NEWHDR 10 |
| 51 | |
| 52 | // max # of matches per regexp |
| 53 | #define MAX_MATCH 10 |
| 54 | |
| 55 | // cookie delimitor in "prefix" mode. This character is inserted between the |
| 56 | // persistence cookie and the original value. The '~' is allowed by RFC2965, |
| 57 | // and should not be too common in server names. |
| 58 | #ifndef COOKIE_DELIM |
| 59 | #define COOKIE_DELIM '~' |
| 60 | #endif |
| 61 | |
| 62 | #define CONN_RETRIES 3 |
| 63 | |
| 64 | #define CHK_CONNTIME 2000 |
| 65 | #define DEF_CHKINTR 2000 |
| 66 | #define DEF_FALLTIME 3 |
| 67 | #define DEF_RISETIME 2 |
| 68 | #define DEF_CHECK_REQ "OPTIONS / HTTP/1.0\r\n\r\n" |
| 69 | |
| 70 | /* Default connections limit. |
| 71 | * |
| 72 | * A system limit can be enforced at build time in order to avoid using haproxy |
| 73 | * beyond reasonable system limits. For this, just define SYSTEM_MAXCONN to the |
| 74 | * absolute limit accepted by the system. If the configuration specifies a |
| 75 | * higher value, it will be capped to SYSTEM_MAXCONN and a warning will be |
| 76 | * emitted. The only way to override this limit will be to set it via the |
| 77 | * command-line '-n' argument. |
| 78 | */ |
| 79 | #ifndef SYSTEM_MAXCONN |
| 80 | #define DEFAULT_MAXCONN 2000 |
| 81 | #else |
| 82 | #define DEFAULT_MAXCONN SYSTEM_MAXCONN |
| 83 | #endif |
| 84 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 85 | #endif /* _COMMON_DEFAULTS_H */ |