commit | 21ddc74e8a9c20310c39b1a8b6fc284616fa8c3a | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Wed Jul 01 15:26:14 2020 +0200 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Wed Jul 15 14:08:14 2020 +0200 |
tree | d243bd6edf1f2d4f509da8184fccf33ac4769d07 | |
parent | c64badd573310f88339369ed0902dd1803e6cdc0 [diff] |
MINOR: connection: Add a wrapper to mark a connection as private To set a connection as private, the conn_set_private() function must now be called. It sets the CO_FL_PRIVATE flags, but it also remove the connection from the available connection list, if necessary. For now, it never happens because only HTTP/1 connections may be set as private after their creation. And these connections are never inserted in the available connection list.