MINOR: conn-stream: Add CL_FL_NOT_FIRST flag

This flags will be used by multiplexers to warn a conn-stream (and, by
transitivity, a stream) it is not the first one created by the mux. It will help
mux H1 to handle keep-alive connections.
This commit is contained in:
Christopher Faulet 2018-10-01 12:10:13 +02:00 committed by Willy Tarreau
parent ff08a92797
commit 08088e77c6
1 changed files with 2 additions and 0 deletions

View File

@ -83,6 +83,8 @@ enum {
CS_FL_EOS = 0x00001000, /* End of stream delivered to data layer */
CS_FL_REOS = 0x00002000, /* End of stream received (buffer not empty) */
CS_FL_WAIT_FOR_HS = 0x00010000, /* This stream is waiting for handhskae */
CS_FL_NOT_FIRST = 0x00100000, /* This stream is not the first one */
};
/* cs_shutr() modes */