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.
This commit is contained in:
Olivier Houchard 2018-08-31 17:43:32 +02:00 committed by Willy Tarreau
parent f653528dc1
commit cb1f49ff93

View File

@ -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;
};