From: Olivier Houchard Date: Fri, 31 Aug 2018 15:43:32 +0000 (+0200) Subject: MINOR: connections: Add a "handle" field to wait_list. X-Git-Tag: v1.9-dev2~28 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb1f49ff9325f6576ae5103e9cd2958a01f82447;p=thirdparty%2Fhaproxy.git MINOR: connections: Add a "handle" field to wait_list. Add a new field to struct wait_list, "handle", that can be used by the entity in charge of subscribing. --- diff --git a/include/types/connection.h b/include/types/connection.h index 1fa0b7381f..998ecacb0e 100644 --- a/include/types/connection.h +++ b/include/types/connection.h @@ -52,6 +52,7 @@ enum sub_event_type { struct wait_list { struct tasklet *task; struct list list; + void *handle; /* To be used by the callee */ int wait_reason; };