commit | 99cca08eccf5809fafb3a448dcf8f528333cc22a | [log] [tgz] |
---|---|---|
author | Amaury Denoyelle <adenoyelle@haproxy.com> | Mon May 03 14:28:30 2021 +0200 |
committer | Amaury Denoyelle <adenoyelle@haproxy.com> | Wed May 05 14:35:36 2021 +0200 |
tree | 9c73cffc0260f67212daaa17efb8715bbc32eccf | |
parent | 3109ccfe70c99ae29387f3a25f49eb83a9f05504 [diff] |
MINOR: connection: move session_list member in a union Move the session_list attach point in an anonymous union. This member is only used for backend connections. This commit is in preparation for the support of stopping frontend idling connections which will add another member to the union. This change means that a special care must be taken to be sure that only backend connections manipulate the session_list. A few BUG_ON has been added as special guard to prevent from misuse.