From 258a14b7d76ea2d73d030d052f89a337a345c410 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Tue, 13 Jul 2010 16:24:48 +0200 Subject: [PATCH] [MINOR] proxy: add a "parent" member to the structure This member will be used later when frontends are created on the fly by some tasks. It will also be usable later if we need to support multiple config instances for example. --- include/types/proxy.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/types/proxy.h b/include/types/proxy.h index aab7b762c..076a381d8 100644 --- a/include/types/proxy.h +++ b/include/types/proxy.h @@ -299,6 +299,7 @@ struct proxy { struct eb_root used_listener_id;/* list of listener IDs in use */ struct eb_root used_server_id; /* list of server IDs in use */ } conf; /* config information */ + void *parent; /* parent of the proxy when applicable */ }; struct switching_rule {