REORG: connection: rename CO_FL_DATA_* -> CO_FL_XPRT_*
authorOlivier Houchard <ohouchard@haproxy.com>
Wed, 13 Sep 2017 16:30:23 +0000 (18:30 +0200)
committerWilly Tarreau <w@1wt.eu>
Sun, 22 Oct 2017 07:54:15 +0000 (09:54 +0200)
commit1a0545f3d74630ee124540c2fc77f8c88c81df04
tree378d3c4951fbb9af3ca0dad20a165dc9e884c99f
parent794f9af8949d0d9edfdfe2453167325e75cac2e4
REORG: connection: rename CO_FL_DATA_* -> CO_FL_XPRT_*

These flags are not exactly for the data layer, they instead indicate
what is expected from the transport layer. Since we're going to split
the connection between the transport and the data layers to insert a
mux layer, it's important to have a clear idea of what each layer does.

All function conn_data_* used to manipulate these flags were renamed to
conn_xprt_*.
contrib/debug/flags.c
include/proto/connection.h
include/proto/stream_interface.h
include/types/connection.h
src/checks.c
src/connection.c
src/proto_tcp.c
src/proto_uxst.c
src/session.c
src/stream.c
src/stream_interface.c