commit | 7abddb5c6714a8d50ea63bbc69d23820844bca1d | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Thu Oct 24 15:31:04 2013 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Mon Dec 09 15:40:23 2013 +0100 |
tree | 9b1169bac70d4d51ade20c462cc49416a152797a | |
parent | 910c6aa5b7a6796740a6506216ab7eeef55ccf07 [diff] |
MINOR: connection: replace conn_assign with conn_attach We don't want to assign the control nor transport layers anymore at the same time as the data layer, because it prevents one from keeping existing settings when reattaching a connection to an existing stream interface. Let's have conn_attach() replace conn_assign() for this purpose. Thus, conn_prepare() + conn_attach() do exactly the same as the previous conn_assign().