mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-26 06:32:13 +00:00
CONTRIB: debug: fix build related to conn_stream flags change
Commit53216e7db
("MEDIUM: connections: Don't directly mess with the polling from the upper layers.") removed the CS_FL_DATA_RD_ENA and CS_FL_DATA_WR_ENA flags without updating flags.c, thus breaking the build. This patch also adds flag CL_FL_NOT_FIRST which was brought by commit08088e77c
.
This commit is contained in:
parent
ffb1205a47
commit
d5016469bf
@ -156,6 +156,7 @@ void show_cs_flags(unsigned int f)
|
||||
printf("0\n");
|
||||
return;
|
||||
}
|
||||
SHOW_FLAG(f, CS_FL_NOT_FIRST);
|
||||
SHOW_FLAG(f, CS_FL_WAIT_FOR_HS);
|
||||
SHOW_FLAG(f, CS_FL_REOS);
|
||||
SHOW_FLAG(f, CS_FL_EOS);
|
||||
@ -165,8 +166,6 @@ void show_cs_flags(unsigned int f)
|
||||
SHOW_FLAG(f, CS_FL_SHWN);
|
||||
SHOW_FLAG(f, CS_FL_SHRR);
|
||||
SHOW_FLAG(f, CS_FL_SHRD);
|
||||
SHOW_FLAG(f, CS_FL_DATA_WR_ENA);
|
||||
SHOW_FLAG(f, CS_FL_DATA_RD_ENA);
|
||||
|
||||
if (f) {
|
||||
printf("EXTRA(0x%08x)", f);
|
||||
|
Loading…
Reference in New Issue
Block a user