commit | cb1f49ff9325f6576ae5103e9cd2958a01f82447 | [log] [tgz] |
---|---|---|
author | Olivier Houchard <ohouchard@haproxy.com> | Fri Aug 31 17:43:32 2018 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Sep 12 17:37:55 2018 +0200 |
tree | 553d8dba2aa0a985b1d25507e30bb93ee8029446 | |
parent | f653528dc1dc001c8bdd126c7364371eedd78bff [diff] |
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 1fa0b73..998ecac 100644 --- a/include/types/connection.h +++ b/include/types/connection.h
@@ -52,6 +52,7 @@ struct wait_list { struct tasklet *task; struct list list; + void *handle; /* To be used by the callee */ int wait_reason; };