MINOR: cli: delare the CLI frontend as an internal proxy
Declare the CLI frontend as an internal proxy so we can check the PR_CAP_INT flag instead of the global.fe_cli pointer for generic use cases.
This commit is contained in:
parent
bc5c821cc2
commit
6640dbb524
|
@ -380,7 +380,7 @@ static struct proxy *cli_alloc_fe(const char *name, const char *file, int line)
|
||||||
proxies_list = fe;
|
proxies_list = fe;
|
||||||
fe->last_change = now.tv_sec;
|
fe->last_change = now.tv_sec;
|
||||||
fe->id = strdup("GLOBAL");
|
fe->id = strdup("GLOBAL");
|
||||||
fe->cap = PR_CAP_FE;
|
fe->cap = PR_CAP_FE|PR_CAP_INT;
|
||||||
fe->maxconn = 10; /* default to 10 concurrent connections */
|
fe->maxconn = 10; /* default to 10 concurrent connections */
|
||||||
fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
|
fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
|
||||||
fe->conf.file = strdup(file);
|
fe->conf.file = strdup(file);
|
||||||
|
|
Loading…
Reference in New Issue