CLEANUP: applet: remove the now unused appctx->private field

Nobody uses it anymore. This shrinks the appctx size by 8 bytes.
This commit is contained in:
Willy Tarreau 2016-12-14 15:58:39 +01:00
parent a24bc78ad4
commit 90f19e3c68

View File

@ -58,7 +58,6 @@ struct appctx {
int (*io_handler)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK */ int (*io_handler)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK */
void (*io_release)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK, void (*io_release)(struct appctx *appctx); /* used within the cli_io_handler when st0 = CLI_ST_CALLBACK,
if the command is terminated or the session released */ if the command is terminated or the session released */
void *private;
struct buffer_wait buffer_wait; /* position in the list of objects waiting for a buffer */ struct buffer_wait buffer_wait; /* position in the list of objects waiting for a buffer */
union { union {