Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 2 | * include/common/defaults.h |
| 3 | * Miscellaneous default values. |
| 4 | * |
| 5 | * Copyright (C) 2000-2010 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 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 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 | ff9c914 | 2019-02-07 10:39:36 +0100 | [diff] [blame] | 25 | /* MAX_PROCS defines the highest limit for the global "nbproc" value. It |
| 26 | * defaults to the number of bits in a long integer but may be lowered to save |
| 27 | * resources on embedded systems. |
| 28 | */ |
| 29 | #ifndef MAX_PROCS |
| 30 | #define MAX_PROCS LONGBITS |
| 31 | #endif |
| 32 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 33 | /* |
| 34 | * BUFSIZE defines the size of a read and write buffer. It is the maximum |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 35 | * amount of bytes which can be stored by the proxy for each stream. However, |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 36 | * when reading HTTP headers, the proxy needs some spare space to add or rewrite |
| 37 | * headers if needed. The size of this spare is defined with MAXREWRITE. So it |
| 38 | * is not possible to process headers longer than BUFSIZE-MAXREWRITE bytes. By |
Willy Tarreau | 2709784 | 2015-09-28 13:53:23 +0200 | [diff] [blame] | 39 | * default, BUFSIZE=16384 bytes and MAXREWRITE=min(1024,BUFSIZE/2), so the |
| 40 | * maximum length of headers accepted is 15360 bytes. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 41 | */ |
| 42 | #ifndef BUFSIZE |
| 43 | #define BUFSIZE 16384 |
| 44 | #endif |
| 45 | |
Willy Tarreau | a24adf0 | 2014-11-27 01:11:56 +0100 | [diff] [blame] | 46 | /* certain buffers may only be allocated for responses in order to avoid |
| 47 | * deadlocks caused by request queuing. 2 buffers is the absolute minimum |
| 48 | * acceptable to ensure that a request gaining access to a server can get |
| 49 | * a response buffer even if it doesn't completely flush the request buffer. |
| 50 | * The worst case is an applet making use of a request buffer that cannot |
| 51 | * completely be sent while the server starts to respond, and all unreserved |
| 52 | * buffers are allocated by request buffers from pending connections in the |
| 53 | * queue waiting for this one to flush. Both buffers reserved buffers may |
| 54 | * thus be used at the same time. |
| 55 | */ |
| 56 | #ifndef RESERVED_BUFS |
| 57 | #define RESERVED_BUFS 2 |
| 58 | #endif |
| 59 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 60 | // reserved buffer space for header rewriting |
| 61 | #ifndef MAXREWRITE |
Willy Tarreau | 2709784 | 2015-09-28 13:53:23 +0200 | [diff] [blame] | 62 | #define MAXREWRITE 1024 |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 63 | #endif |
| 64 | |
Willy Tarreau | bf43f6e | 2013-06-03 15:52:52 +0200 | [diff] [blame] | 65 | #ifndef REQURI_LEN |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 66 | #define REQURI_LEN 1024 |
Willy Tarreau | bf43f6e | 2013-06-03 15:52:52 +0200 | [diff] [blame] | 67 | #endif |
| 68 | |
| 69 | #ifndef CAPTURE_LEN |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 70 | #define CAPTURE_LEN 64 |
Willy Tarreau | bf43f6e | 2013-06-03 15:52:52 +0200 | [diff] [blame] | 71 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 72 | |
Willy Tarreau | 4e95790 | 2014-06-27 18:08:49 +0200 | [diff] [blame] | 73 | #ifndef MAX_SYSLOG_LEN |
| 74 | #define MAX_SYSLOG_LEN 1024 |
| 75 | #endif |
| 76 | |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 77 | // maximum line size when parsing config |
| 78 | #ifndef LINESIZE |
| 79 | #define LINESIZE 2048 |
| 80 | #endif |
| 81 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 82 | // max # args on a configuration line |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 83 | #define MAX_LINE_ARGS 64 |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 84 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 85 | // maximum line size when parsing crt-bind-list config |
| 86 | #define CRT_LINESIZE 65536 |
| 87 | |
| 88 | // max # args on crt-bind-list configuration line |
| 89 | #define MAX_CRT_ARGS 2048 |
Emmanuel Hocdet | 5e0e6e4 | 2016-05-13 11:18:50 +0200 | [diff] [blame] | 90 | |
Willy Tarreau | 5ca791d | 2009-08-16 19:06:42 +0200 | [diff] [blame] | 91 | // max # args on a stats socket |
Willy Tarreau | 47060b6 | 2013-08-01 21:11:42 +0200 | [diff] [blame] | 92 | // This should cover at least 5 + twice the # of data_types |
| 93 | #define MAX_STATS_ARGS 64 |
Krzysztof Piotr Oledzki | 2c6962c | 2008-03-02 02:42:14 +0100 | [diff] [blame] | 94 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 95 | // max # of matches per regexp |
| 96 | #define MAX_MATCH 10 |
| 97 | |
Willy Tarreau | e5f20dc | 2006-12-03 15:21:35 +0100 | [diff] [blame] | 98 | // max # of headers in one HTTP request or response |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 99 | // By default, about 100 headers (+1 for the first line) |
Willy Tarreau | e5f20dc | 2006-12-03 15:21:35 +0100 | [diff] [blame] | 100 | #ifndef MAX_HTTP_HDR |
Willy Tarreau | ac1932d | 2011-10-24 19:14:41 +0200 | [diff] [blame] | 101 | #define MAX_HTTP_HDR 101 |
Willy Tarreau | e5f20dc | 2006-12-03 15:21:35 +0100 | [diff] [blame] | 102 | #endif |
| 103 | |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 104 | // max # of headers in history when looking for header #-X |
| 105 | #ifndef MAX_HDR_HISTORY |
| 106 | #define MAX_HDR_HISTORY 10 |
| 107 | #endif |
| 108 | |
Willy Tarreau | b4c8493 | 2013-07-23 19:15:30 +0200 | [diff] [blame] | 109 | // max # of stick counters per session (at least 3 for sc0..sc2) |
Willy Tarreau | b4c8493 | 2013-07-23 19:15:30 +0200 | [diff] [blame] | 110 | #ifndef MAX_SESS_STKCTR |
| 111 | #define MAX_SESS_STKCTR 3 |
| 112 | #endif |
| 113 | |
Willy Tarreau | edee1d6 | 2014-07-15 16:44:27 +0200 | [diff] [blame] | 114 | // max # of extra stick-table data types that can be registred at runtime |
| 115 | #ifndef STKTABLE_EXTRA_DATA_TYPES |
| 116 | #define STKTABLE_EXTRA_DATA_TYPES 0 |
| 117 | #endif |
| 118 | |
Willy Tarreau | b8949f1 | 2007-03-23 22:39:59 +0100 | [diff] [blame] | 119 | // max # of loops we can perform around a read() which succeeds. |
| 120 | // It's very frequent that the system returns a few TCP segments at a time. |
| 121 | #ifndef MAX_READ_POLL_LOOPS |
| 122 | #define MAX_READ_POLL_LOOPS 4 |
| 123 | #endif |
| 124 | |
Willy Tarreau | 6f4a82c | 2009-03-21 20:43:57 +0100 | [diff] [blame] | 125 | // minimum number of bytes read at once above which we don't try to read |
| 126 | // more, in order not to risk facing an EAGAIN. Most often, if we read |
| 127 | // at least 10 kB, we can consider that the system has tried to read a |
| 128 | // full buffer and got multiple segments (>1 MSS for jumbo frames, >7 MSS |
| 129 | // for normal frames) did not bother truncating the last segment. |
| 130 | #ifndef MIN_RECV_AT_ONCE_ENOUGH |
| 131 | #define MIN_RECV_AT_ONCE_ENOUGH (7*1448) |
| 132 | #endif |
| 133 | |
Willy Tarreau | 14acc70 | 2011-05-11 20:47:24 +0200 | [diff] [blame] | 134 | // The minimum number of bytes to be forwarded that is worth trying to splice. |
| 135 | // Below 4kB, it's not worth allocating pipes nor pretending to zero-copy. |
| 136 | #ifndef MIN_SPLICE_FORWARD |
| 137 | #define MIN_SPLICE_FORWARD 4096 |
| 138 | #endif |
| 139 | |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 140 | // the max number of events returned in one call to poll/epoll. Too small a |
| 141 | // value will cause lots of calls, and too high a value may cause high latency. |
| 142 | #ifndef MAX_POLL_EVENTS |
| 143 | #define MAX_POLL_EVENTS 200 |
| 144 | #endif |
| 145 | |
Olivier Houchard | 1599b80 | 2018-05-24 18:59:04 +0200 | [diff] [blame] | 146 | // the max number of tasks to run at once |
| 147 | #ifndef RUNQUEUE_DEPTH |
| 148 | #define RUNQUEUE_DEPTH 200 |
| 149 | #endif |
| 150 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 151 | // cookie delimitor in "prefix" mode. This character is inserted between the |
Lukas Tribus | 2395368 | 2017-04-28 13:24:30 +0000 | [diff] [blame] | 152 | // persistence cookie and the original value. The '~' is allowed by RFC6265, |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 153 | // and should not be too common in server names. |
| 154 | #ifndef COOKIE_DELIM |
| 155 | #define COOKIE_DELIM '~' |
| 156 | #endif |
| 157 | |
Willy Tarreau | bca9969 | 2010-10-06 19:25:55 +0200 | [diff] [blame] | 158 | // this delimitor is used between a server's name and a last visit date in |
| 159 | // cookies exchanged with the client. |
| 160 | #ifndef COOKIE_DELIM_DATE |
| 161 | #define COOKIE_DELIM_DATE '|' |
| 162 | #endif |
| 163 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 164 | #define CONN_RETRIES 3 |
| 165 | |
| 166 | #define CHK_CONNTIME 2000 |
| 167 | #define DEF_CHKINTR 2000 |
Pieter Baauw | 46af170 | 2016-02-12 14:35:20 +0100 | [diff] [blame] | 168 | #define DEF_MAILALERTTIME 10000 |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 169 | #define DEF_FALLTIME 3 |
| 170 | #define DEF_RISETIME 2 |
Simon Horman | 58c3297 | 2013-11-25 10:46:38 +0900 | [diff] [blame] | 171 | #define DEF_AGENT_FALLTIME 1 |
| 172 | #define DEF_AGENT_RISETIME 1 |
Willy Tarreau | e9d8788 | 2010-01-27 11:28:42 +0100 | [diff] [blame] | 173 | #define DEF_CHECK_REQ "OPTIONS / HTTP/1.0\r\n" |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 174 | #define DEF_CHECK_PATH "" |
Willy Tarreau | 2367790 | 2007-05-08 23:50:35 +0200 | [diff] [blame] | 175 | #define DEF_SMTP_CHECK_REQ "HELO localhost\r\n" |
Gabor Lekeny | b4c81e4 | 2010-09-29 18:17:05 +0200 | [diff] [blame] | 176 | #define DEF_LDAP_CHECK_REQ "\x30\x0c\x02\x01\x01\x60\x07\x02\x01\x03\x04\x00\x80\x00" |
Hervé COMMOWICK | ec032d6 | 2011-08-05 16:23:48 +0200 | [diff] [blame] | 177 | #define DEF_REDIS_CHECK_REQ "*1\r\n$4\r\nPING\r\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 178 | |
Krzysztof Piotr Oledzki | 97f07b8 | 2009-12-15 22:31:24 +0100 | [diff] [blame] | 179 | #define DEF_HANA_ONERR HANA_ONERR_FAILCHK |
| 180 | #define DEF_HANA_ERRLIMIT 10 |
| 181 | |
Ross West | af72a1d | 2008-08-03 10:51:45 +0200 | [diff] [blame] | 182 | // X-Forwarded-For header default |
| 183 | #define DEF_XFORWARDFOR_HDR "X-Forwarded-For" |
| 184 | |
Maik Broemme | 2850cb4 | 2009-04-17 18:53:21 +0200 | [diff] [blame] | 185 | // X-Original-To header default |
| 186 | #define DEF_XORIGINALTO_HDR "X-Original-To" |
| 187 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 188 | /* Default connections limit. |
| 189 | * |
| 190 | * A system limit can be enforced at build time in order to avoid using haproxy |
| 191 | * beyond reasonable system limits. For this, just define SYSTEM_MAXCONN to the |
| 192 | * absolute limit accepted by the system. If the configuration specifies a |
| 193 | * higher value, it will be capped to SYSTEM_MAXCONN and a warning will be |
| 194 | * emitted. The only way to override this limit will be to set it via the |
| 195 | * command-line '-n' argument. |
| 196 | */ |
| 197 | #ifndef SYSTEM_MAXCONN |
Willy Tarreau | c9fe456 | 2009-06-15 16:33:36 +0200 | [diff] [blame] | 198 | #ifndef DEFAULT_MAXCONN |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 199 | #define DEFAULT_MAXCONN 2000 |
Willy Tarreau | c9fe456 | 2009-06-15 16:33:36 +0200 | [diff] [blame] | 200 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 201 | #else |
Willy Tarreau | c9fe456 | 2009-06-15 16:33:36 +0200 | [diff] [blame] | 202 | #undef DEFAULT_MAXCONN |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 203 | #define DEFAULT_MAXCONN SYSTEM_MAXCONN |
| 204 | #endif |
| 205 | |
Willy Tarreau | 2c43a1e | 2007-10-14 23:05:39 +0200 | [diff] [blame] | 206 | /* Minimum check interval for spread health checks. Servers with intervals |
| 207 | * greater than or equal to this value will have their checks spread apart |
| 208 | * and will be considered when searching the minimal interval. |
| 209 | * Others will be ignored for the minimal interval and will have their checks |
| 210 | * scheduled on a different basis. |
| 211 | */ |
| 212 | #ifndef SRV_CHK_INTER_THRES |
| 213 | #define SRV_CHK_INTER_THRES 1000 |
| 214 | #endif |
| 215 | |
Krzysztof Oledzki | d9db927 | 2007-10-15 10:05:11 +0200 | [diff] [blame] | 216 | /* Specifies the string used to report the version and release date on the |
| 217 | * statistics page. May be defined to the empty string ("") to permanently |
| 218 | * disable the feature. |
| 219 | */ |
| 220 | #ifndef STATS_VERSION_STRING |
| 221 | #define STATS_VERSION_STRING " version " HAPROXY_VERSION ", released " HAPROXY_DATE |
| 222 | #endif |
| 223 | |
Willy Tarreau | 8f38bd0 | 2009-05-10 08:53:33 +0200 | [diff] [blame] | 224 | /* Maximum signal queue size, and also number of different signals we can |
| 225 | * handle. |
| 226 | */ |
| 227 | #ifndef MAX_SIGNAL |
| 228 | #define MAX_SIGNAL 256 |
| 229 | #endif |
| 230 | |
Willy Tarreau | 3ad6a76 | 2009-08-16 10:08:02 +0200 | [diff] [blame] | 231 | /* Maximum host name length */ |
| 232 | #ifndef MAX_HOSTNAME_LEN |
Willy Tarreau | 75abcb3 | 2015-01-14 11:48:58 +0100 | [diff] [blame] | 233 | #if MAXHOSTNAMELEN |
| 234 | #define MAX_HOSTNAME_LEN MAXHOSTNAMELEN |
| 235 | #else |
| 236 | #define MAX_HOSTNAME_LEN 64 |
| 237 | #endif // MAXHOSTNAMELEN |
| 238 | #endif // MAX_HOSTNAME_LEN |
Willy Tarreau | 3ad6a76 | 2009-08-16 10:08:02 +0200 | [diff] [blame] | 239 | |
Krzysztof Piotr Oledzki | f7089f5 | 2009-10-10 21:06:49 +0200 | [diff] [blame] | 240 | /* Maximum health check description length */ |
| 241 | #ifndef HCHK_DESC_LEN |
| 242 | #define HCHK_DESC_LEN 128 |
| 243 | #endif |
| 244 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 245 | /* ciphers used as defaults on connect */ |
| 246 | #ifndef CONNECT_DEFAULT_CIPHERS |
| 247 | #define CONNECT_DEFAULT_CIPHERS NULL |
| 248 | #endif |
| 249 | |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 250 | /* ciphers used as defaults on TLS 1.3 connect */ |
| 251 | #ifndef CONNECT_DEFAULT_CIPHERSUITES |
| 252 | #define CONNECT_DEFAULT_CIPHERSUITES NULL |
| 253 | #endif |
| 254 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 255 | /* ciphers used as defaults on listeners */ |
| 256 | #ifndef LISTEN_DEFAULT_CIPHERS |
| 257 | #define LISTEN_DEFAULT_CIPHERS NULL |
| 258 | #endif |
| 259 | |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 260 | /* cipher suites used as defaults on TLS 1.3 listeners */ |
| 261 | #ifndef LISTEN_DEFAULT_CIPHERSUITES |
| 262 | #define LISTEN_DEFAULT_CIPHERSUITES NULL |
| 263 | #endif |
| 264 | |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 265 | /* named curve used as defaults for ECDHE ciphers */ |
| 266 | #ifndef ECDHE_DEFAULT_CURVE |
| 267 | #define ECDHE_DEFAULT_CURVE "prime256v1" |
| 268 | #endif |
| 269 | |
Emeric Brun | 4663577 | 2012-11-14 11:32:56 +0100 | [diff] [blame] | 270 | /* ssl cache size */ |
| 271 | #ifndef SSLCACHESIZE |
| 272 | #define SSLCACHESIZE 20000 |
| 273 | #endif |
| 274 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 275 | /* ssl max dh param size */ |
| 276 | #ifndef SSL_DEFAULT_DH_PARAM |
| 277 | #define SSL_DEFAULT_DH_PARAM 0 |
| 278 | #endif |
| 279 | |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 280 | /* max memory cost per SSL session */ |
| 281 | #ifndef SSL_SESSION_MAX_COST |
| 282 | #define SSL_SESSION_MAX_COST (16*1024) // measured |
| 283 | #endif |
| 284 | |
| 285 | /* max memory cost per SSL handshake (on top of session) */ |
| 286 | #ifndef SSL_HANDSHAKE_MAX_COST |
| 287 | #define SSL_HANDSHAKE_MAX_COST (76*1024) // measured |
| 288 | #endif |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 289 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 290 | #ifndef DEFAULT_SSL_CTX_CACHE |
| 291 | #define DEFAULT_SSL_CTX_CACHE 1000 |
| 292 | #endif |
| 293 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 294 | /* approximate stream size (for maxconn estimate) */ |
| 295 | #ifndef STREAM_MAX_COST |
| 296 | #define STREAM_MAX_COST (sizeof(struct stream) + \ |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 297 | 2 * sizeof(struct channel) + \ |
| 298 | 2 * sizeof(struct connection) + \ |
Stéphane Cottin | 23e9e93 | 2017-05-18 08:58:41 +0200 | [diff] [blame] | 299 | global.tune.requri_len + \ |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 300 | 2 * global.tune.cookie_len) |
| 301 | #endif |
| 302 | |
| 303 | /* available memory estimate : count about 3% of overhead in various structures */ |
| 304 | #ifndef MEM_USABLE_RATIO |
| 305 | #define MEM_USABLE_RATIO 0.97 |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 306 | #endif |
| 307 | |
Willy Tarreau | 4bfc580 | 2014-06-17 12:19:18 +0200 | [diff] [blame] | 308 | /* Number of samples used to compute the times reported in stats. A power of |
| 309 | * two is highly recommended, and this value multiplied by the largest response |
| 310 | * time must not overflow and unsigned int. See freq_ctr.h for more information. |
| 311 | * We consider that values are accurate to 95% with two batches of samples below, |
| 312 | * so in order to advertise accurate times across 1k samples, we effectively |
| 313 | * measure over 512. |
| 314 | */ |
| 315 | #ifndef TIME_STATS_SAMPLES |
| 316 | #define TIME_STATS_SAMPLES 512 |
| 317 | #endif |
| 318 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 319 | /* max ocsp cert id asn1 encoded length */ |
| 320 | #ifndef OCSP_MAX_CERTID_ASN1_LENGTH |
| 321 | #define OCSP_MAX_CERTID_ASN1_LENGTH 128 |
| 322 | #endif |
| 323 | |
Emeric Brun | c8b27b6 | 2014-06-19 14:16:17 +0200 | [diff] [blame] | 324 | #ifndef OCSP_MAX_RESPONSE_TIME_SKEW |
| 325 | #define OCSP_MAX_RESPONSE_TIME_SKEW 300 |
| 326 | #endif |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 327 | |
| 328 | /* Number of TLS tickets to check, used for rotation */ |
| 329 | #ifndef TLS_TICKETS_NO |
| 330 | #define TLS_TICKETS_NO 3 |
| 331 | #endif |
Willy Tarreau | f3045d2 | 2015-04-29 16:24:50 +0200 | [diff] [blame] | 332 | |
| 333 | /* pattern lookup default cache size, in number of entries : |
| 334 | * 10k entries at 10k req/s mean 1% risk of a collision after 60 years, that's |
| 335 | * already much less than the memory's reliability in most machines and more |
| 336 | * durable than most admin's life expectancy. A collision will result in a |
| 337 | * valid result to be returned for a different entry from the same list. |
| 338 | */ |
| 339 | #ifndef DEFAULT_PAT_LRU_SIZE |
| 340 | #define DEFAULT_PAT_LRU_SIZE 10000 |
| 341 | #endif |
| 342 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 343 | #endif /* _COMMON_DEFAULTS_H */ |