blob: e597fc5c4abab28306b067a2e2c8faa2896ff83f [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Proxy variables and functions.
3 *
Willy Tarreaub7f694f2008-06-22 17:18:02 +02004 * Copyright 2000-2008 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <fcntl.h>
14#include <unistd.h>
Willy Tarreauc8f24f82007-11-30 18:38:35 +010015#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020016#include <sys/types.h>
17#include <sys/socket.h>
18#include <sys/stat.h>
19
Willy Tarreau2dd0d472006-06-29 17:53:05 +020020#include <common/defaults.h>
21#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020022#include <common/config.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010023#include <common/errors.h>
Willy Tarreau4d2d0982007-05-14 00:39:29 +020024#include <common/memory.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020025#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
27#include <types/global.h>
28#include <types/polling.h>
29
30#include <proto/client.h>
Alexandre Cassen87ea5482007-10-11 20:48:58 +020031#include <proto/backend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020032#include <proto/fd.h>
33#include <proto/log.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010034#include <proto/protocols.h>
35#include <proto/proto_tcp.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <proto/proxy.h>
37
38
Willy Tarreaue6b98942007-10-29 01:09:36 +010039int listeners; /* # of proxy listeners, set by cfgparse, unset by maintain_proxies */
Willy Tarreaubaaee002006-06-26 02:48:02 +020040struct proxy *proxy = NULL; /* list of all existing proxies */
Willy Tarreaudcd47712007-11-04 23:35:08 +010041int next_pxid = 1; /* UUID assigned to next new proxy, 0 reserved */
Willy Tarreaubaaee002006-06-26 02:48:02 +020042
Willy Tarreau977b8e42006-12-29 14:19:17 +010043/*
Willy Tarreau816eb542007-11-04 07:04:43 +010044 * This function returns a string containing a name describing capabilities to
45 * report comprehensible error messages. Specifically, it will return the words
46 * "frontend", "backend", "ruleset" when appropriate, or "proxy" for all other
47 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +010048 */
Willy Tarreau816eb542007-11-04 07:04:43 +010049const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +010050{
Willy Tarreau816eb542007-11-04 07:04:43 +010051 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
52 if (cap & PR_CAP_FE)
53 return "frontend";
54 else if (cap & PR_CAP_BE)
55 return "backend";
56 else if (cap & PR_CAP_RS)
57 return "ruleset";
58 }
59 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +010060}
61
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +010062/*
63 * This function returns a string containing the mode of the proxy in a format
64 * suitable for error messages.
65 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +010066const char *proxy_mode_str(int mode) {
67
68 if (mode == PR_MODE_TCP)
69 return "tcp";
70 else if (mode == PR_MODE_HTTP)
71 return "http";
72 else if (mode == PR_MODE_HEALTH)
73 return "health";
74 else
75 return "unknown";
76}
77
Willy Tarreaue219db72007-12-03 01:30:13 +010078/* This function parses a "timeout" statement in a proxy section. It returns
79 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
80 * return zero, it may write an error message into the <err> buffer, for at
81 * most <errlen> bytes, trailing zero included. The trailing '\n' must not
82 * be written. The function must be called with <args> pointing to the first
83 * word after "timeout", with <proxy> pointing to the proxy being parsed, and
84 * <defpx> to the default proxy or NULL. As a special case for compatibility
85 * with older configs, it also accepts "{cli|srv|con}timeout" in args[0].
86 */
87int proxy_parse_timeout(const char **args, struct proxy *proxy,
88 struct proxy *defpx, char *err, int errlen)
89{
90 unsigned timeout;
91 int retval, cap;
92 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +020093 int *tv = NULL;
94 int *td = NULL;
Willy Tarreaue219db72007-12-03 01:30:13 +010095
96 retval = 0;
97 name = args[0];
98 if (!strcmp(args[0], "client") || !strcmp(args[0], "clitimeout")) {
99 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100100 tv = &proxy->timeout.client;
101 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100102 cap = PR_CAP_FE;
103 } else if (!strcmp(args[0], "tarpit")) {
104 tv = &proxy->timeout.tarpit;
105 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100106 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100107 } else if (!strcmp(args[0], "http-request")) {
108 tv = &proxy->timeout.httpreq;
109 td = &defpx->timeout.httpreq;
110 cap = PR_CAP_FE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100111 } else if (!strcmp(args[0], "server") || !strcmp(args[0], "srvtimeout")) {
112 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100113 tv = &proxy->timeout.server;
114 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100115 cap = PR_CAP_BE;
116 } else if (!strcmp(args[0], "connect") || !strcmp(args[0], "contimeout")) {
117 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100118 tv = &proxy->timeout.connect;
119 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100120 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100121 } else if (!strcmp(args[0], "check")) {
122 tv = &proxy->timeout.check;
123 td = &defpx->timeout.check;
124 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100125 } else if (!strcmp(args[0], "appsession")) {
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100126 tv = &proxy->timeout.appsession;
127 td = &defpx->timeout.appsession;
Willy Tarreaue219db72007-12-03 01:30:13 +0100128 cap = PR_CAP_BE;
129 } else if (!strcmp(args[0], "queue")) {
130 tv = &proxy->timeout.queue;
131 td = &defpx->timeout.queue;
132 cap = PR_CAP_BE;
133 } else {
Willy Tarreau036fae02008-01-06 13:24:40 +0100134 snprintf(err, errlen,
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100135 "timeout '%s': must be 'client', 'server', 'connect', 'check', "
Willy Tarreau036fae02008-01-06 13:24:40 +0100136 "'appsession', 'queue', 'http-request' or 'tarpit'",
Willy Tarreaue219db72007-12-03 01:30:13 +0100137 args[0]);
138 return -1;
139 }
140
141 if (*args[1] == 0) {
142 snprintf(err, errlen, "%s timeout expects an integer value (in milliseconds)", name);
143 return -1;
144 }
145
146 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
147 if (res) {
148 snprintf(err, errlen, "unexpected character '%c' in %s timeout", *err, name);
149 return -1;
150 }
151
152 if (!(proxy->cap & cap)) {
153 snprintf(err, errlen, "%s timeout will be ignored because %s '%s' has no %s capability",
154 name, proxy_type_str(proxy), proxy->id,
155 (cap & PR_CAP_BE) ? "backend" : "frontend");
156 retval = 1;
157 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200158 else if (defpx && *tv != *td) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100159 snprintf(err, errlen, "overwriting %s timeout which was already specified", name);
160 retval = 1;
161 }
162
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200163 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100164 return retval;
165}
166
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100167/*
168 * This function finds a proxy with matching name, mode and with satisfying
169 * capabilities. It also checks if there are more matching proxies with
170 * requested name as this often leads into unexpected situations.
171 */
172
173struct proxy *findproxy(const char *name, int mode, int cap) {
174
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100175 struct proxy *curproxy, *target = NULL;
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100176
177 for (curproxy = proxy; curproxy; curproxy = curproxy->next) {
178 if ((curproxy->cap & cap)!=cap || strcmp(curproxy->id, name))
179 continue;
180
181 if (curproxy->mode != mode) {
182 Alert("Unable to use proxy '%s' with wrong mode, required: %s, has: %s.\n",
183 name, proxy_mode_str(mode), proxy_mode_str(curproxy->mode));
184 Alert("You may want to use 'mode %s'.\n", proxy_mode_str(mode));
185 return NULL;
186 }
187
188 if (!target) {
189 target = curproxy;
190 continue;
191 }
192
Willy Tarreau816eb542007-11-04 07:04:43 +0100193 Alert("Refusing to use duplicated proxy '%s' with overlapping capabilities: %s/%s!\n",
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100194 name, proxy_type_str(curproxy), proxy_type_str(target));
195
196 return NULL;
197 }
198
199 return target;
200}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200201
202/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100203 * This function finds a server with matching name within selected proxy.
204 * It also checks if there are more matching servers with
205 * requested name as this often leads into unexpected situations.
206 */
207
208struct server *findserver(const struct proxy *px, const char *name) {
209
210 struct server *cursrv, *target = NULL;
211
212 if (!px)
213 return NULL;
214
215 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
216 if (strcmp(cursrv->id, name))
217 continue;
218
219 if (!target) {
220 target = cursrv;
221 continue;
222 }
223
224 Alert("Refusing to use duplicated server '%s' fould in proxy: %s!\n",
225 name, px->id);
226
227 return NULL;
228 }
229
230 return target;
231}
232
233/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200234 * This function creates all proxy sockets. It should be done very early,
235 * typically before privileges are dropped. The sockets will be registered
236 * but not added to any fd_set, in order not to loose them across the fork().
237 * The proxies also start in IDLE state, meaning that it will be
238 * maintain_proxies that will finally complete their loading.
239 *
240 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
241 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200242 */
243int start_proxies(int verbose)
244{
245 struct proxy *curproxy;
246 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100247 int lerr, err = ERR_NONE;
248 int pxerr;
249 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200250
251 for (curproxy = proxy; curproxy != NULL; curproxy = curproxy->next) {
252 if (curproxy->state != PR_STNEW)
253 continue; /* already initialized */
254
255 pxerr = 0;
256 for (listener = curproxy->listen; listener != NULL; listener = listener->next) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100257 if (listener->state != LI_ASSIGNED)
258 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200259
Willy Tarreaue6b98942007-10-29 01:09:36 +0100260 lerr = tcp_bind_listener(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200261
Willy Tarreaue6b98942007-10-29 01:09:36 +0100262 /* errors are reported if <verbose> is set or if they are fatal */
263 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
264 if (lerr & ERR_ALERT)
265 Alert("Starting %s %s: %s\n",
266 proxy_type_str(curproxy), curproxy->id, msg);
267 else if (lerr & ERR_WARN)
268 Warning("Starting %s %s: %s\n",
269 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200270 }
271
Willy Tarreaue6b98942007-10-29 01:09:36 +0100272 err |= lerr;
273 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200274 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100275 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200276 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100277 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200278 pxerr |= 1;
279 continue;
280 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200281 }
282
283 if (!pxerr) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200284 curproxy->state = PR_STIDLE;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200285 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
286 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100287
288 if (err & ERR_ABORT)
289 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200290 }
291
292 return err;
293}
294
295
296/*
297 * this function enables proxies when there are enough free sessions,
298 * or stops them when the table is full. It is designed to be called from the
Willy Tarreau58b458d2008-06-29 22:40:23 +0200299 * select_loop(). It adjusts the date of next expiration event during stop
300 * time if appropriate.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200301 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200302void maintain_proxies(int *next)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200303{
304 struct proxy *p;
305 struct listener *l;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200306
307 p = proxy;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200308
309 /* if there are enough free sessions, we'll activate proxies */
310 if (actconn < global.maxconn) {
311 while (p) {
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100312 if (p->feconn < p->maxconn) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200313 if (p->state == PR_STIDLE) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100314 for (l = p->listen; l != NULL; l = l->next)
315 enable_listener(l);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200316 p->state = PR_STRUN;
317 }
318 }
319 else {
320 if (p->state == PR_STRUN) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100321 for (l = p->listen; l != NULL; l = l->next)
322 disable_listener(l);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200323 p->state = PR_STIDLE;
324 }
325 }
326 p = p->next;
327 }
328 }
329 else { /* block all proxies */
330 while (p) {
331 if (p->state == PR_STRUN) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100332 for (l = p->listen; l != NULL; l = l->next)
333 disable_listener(l);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200334 p->state = PR_STIDLE;
335 }
336 p = p->next;
337 }
338 }
339
340 if (stopping) {
341 p = proxy;
342 while (p) {
343 if (p->state != PR_STSTOPPED) {
344 int t;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200345 t = tick_remain(now_ms, p->stop_time);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200346 if (t == 0) {
347 Warning("Proxy %s stopped.\n", p->id);
348 send_log(p, LOG_WARNING, "Proxy %s stopped.\n", p->id);
349
350 for (l = p->listen; l != NULL; l = l->next) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100351 unbind_listener(l);
352 if (l->state >= LI_ASSIGNED) {
353 delete_listener(l);
354 listeners--;
355 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200356 }
357 p->state = PR_STSTOPPED;
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200358 /* try to free more memory */
359 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200360 }
361 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200362 *next = tick_first(*next, p->stop_time);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200363 }
364 }
365 p = p->next;
366 }
367 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200368 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200369}
370
371
372/*
373 * this function disables health-check servers so that the process will quickly be ignored
374 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
375 * time will not be used since it would already not listen anymore to the socket.
376 */
377void soft_stop(void)
378{
379 struct proxy *p;
380
381 stopping = 1;
382 p = proxy;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200383 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200384 while (p) {
385 if (p->state != PR_STSTOPPED) {
386 Warning("Stopping proxy %s in %d ms.\n", p->id, p->grace);
387 send_log(p, LOG_WARNING, "Stopping proxy %s in %d ms.\n", p->id, p->grace);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200388 p->stop_time = tick_add(now_ms, p->grace);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200389 }
390 p = p->next;
391 }
392}
393
394
395/*
396 * Linux unbinds the listen socket after a SHUT_RD, and ignores SHUT_WR.
397 * Solaris refuses either shutdown().
398 * OpenBSD ignores SHUT_RD but closes upon SHUT_WR and refuses to rebind.
399 * So a common validation path involves SHUT_WR && listen && SHUT_RD.
400 * If disabling at least one listener returns an error, then the proxy
401 * state is set to PR_STERROR because we don't know how to resume from this.
402 */
403void pause_proxy(struct proxy *p)
404{
405 struct listener *l;
406 for (l = p->listen; l != NULL; l = l->next) {
407 if (shutdown(l->fd, SHUT_WR) == 0 &&
Willy Tarreauc73ce2b2008-01-06 10:55:10 +0100408 listen(l->fd, p->backlog ? p->backlog : p->maxconn) == 0 &&
Willy Tarreaubaaee002006-06-26 02:48:02 +0200409 shutdown(l->fd, SHUT_RD) == 0) {
Willy Tarreauf161a342007-04-08 16:59:42 +0200410 EV_FD_CLR(l->fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200411 if (p->state != PR_STERROR)
412 p->state = PR_STPAUSED;
413 }
414 else
415 p->state = PR_STERROR;
416 }
417}
418
419/*
420 * This function temporarily disables listening so that another new instance
421 * can start listening. It is designed to be called upon reception of a
422 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
423 * the proxy, or a SIGTTIN can be sent to listen again.
424 */
425void pause_proxies(void)
426{
427 int err;
428 struct proxy *p;
429
430 err = 0;
431 p = proxy;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200432 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200433 while (p) {
434 if (p->state != PR_STERROR &&
435 p->state != PR_STSTOPPED &&
436 p->state != PR_STPAUSED) {
437 Warning("Pausing proxy %s.\n", p->id);
438 send_log(p, LOG_WARNING, "Pausing proxy %s.\n", p->id);
439 pause_proxy(p);
440 if (p->state != PR_STPAUSED) {
441 err |= 1;
442 Warning("Proxy %s failed to enter pause mode.\n", p->id);
443 send_log(p, LOG_WARNING, "Proxy %s failed to enter pause mode.\n", p->id);
444 }
445 }
446 p = p->next;
447 }
448 if (err) {
449 Warning("Some proxies refused to pause, performing soft stop now.\n");
450 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
451 soft_stop();
452 }
453}
454
455
456/*
457 * This function reactivates listening. This can be used after a call to
458 * sig_pause(), for example when a new instance has failed starting up.
459 * It is designed to be called upon reception of a SIGTTIN.
460 */
461void listen_proxies(void)
462{
463 struct proxy *p;
464 struct listener *l;
465
466 p = proxy;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200467 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200468 while (p) {
469 if (p->state == PR_STPAUSED) {
470 Warning("Enabling proxy %s.\n", p->id);
471 send_log(p, LOG_WARNING, "Enabling proxy %s.\n", p->id);
472
473 for (l = p->listen; l != NULL; l = l->next) {
Willy Tarreauc73ce2b2008-01-06 10:55:10 +0100474 if (listen(l->fd, p->backlog ? p->backlog : p->maxconn) == 0) {
Willy Tarreauf1221aa2006-12-17 22:14:12 +0100475 if (actconn < global.maxconn && p->feconn < p->maxconn) {
Willy Tarreauf161a342007-04-08 16:59:42 +0200476 EV_FD_SET(l->fd, DIR_RD);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200477 p->state = PR_STRUN;
478 }
479 else
480 p->state = PR_STIDLE;
481 } else {
482 int port;
483
484 if (l->addr.ss_family == AF_INET6)
485 port = ntohs(((struct sockaddr_in6 *)(&l->addr))->sin6_port);
486 else
487 port = ntohs(((struct sockaddr_in *)(&l->addr))->sin_port);
488
489 Warning("Port %d busy while trying to enable proxy %s.\n",
490 port, p->id);
491 send_log(p, LOG_WARNING, "Port %d busy while trying to enable proxy %s.\n",
492 port, p->id);
493 /* Another port might have been enabled. Let's stop everything. */
494 pause_proxy(p);
495 break;
496 }
497 }
498 }
499 p = p->next;
500 }
501}
502
503
504/*
505 * Local variables:
506 * c-indent-level: 8
507 * c-basic-offset: 8
508 * End:
509 */